Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.37 KB

Creation.md

File metadata and controls

32 lines (22 loc) · 1.37 KB

Creating from the Terminal

You can run npx create-typescript-app in your terminal to interactively create a new repository in a child directory:

npx create-typescript-app

Then, go through the following two steps to set up required repository tooling on GitHub:

  1. Create two tokens in repository secrets (unless you chose to opt out of releases):
  2. Install two GitHub apps:
    • Codecov (unless you chose to opt out of tests)
    • Renovate (unless you chose to opt out of renovate)

Your new repository will then be ready for development! Hooray! 🥳

Options

You can explicitly provide some or all of the options the script would prompt for as command-line flags. See Options.md.

For example, running the creation script and skipping all GitHub APIs:

npx create-typescript-app --mode create --skip-all-contributors-api --skip-github-api

See Tooling.md for details on the tooling pieces and which bases they're included in.