Skip to content

kit–id–name setup

Adam L Barrett edited this page Mar 22, 2023 · 1 revision

Setup (Installation)

Prerequisites

CLI (Recommended)

npm create @this-dot/starter -- --kit kit-id-name

or

yarn create @this-dot/starter --kit kit-id-name
  • Follow the prompts to select the kit-id-name starter kit and name your new project.
  • cd into your project directory and run npm i.
  • Run npm run dev to start the development server.
  • Open your browser to http://localhost:3000 to see the included example code running.

Manual

Note: The command below clones the entire repository, including other starter kits.

git clone https://github.com/thisdot/starter.dev.git
  • Copy and rename the starters/kit-id-name directory to the name of your new project.
  • cd into your project directory and run npm install.
  • Run npm run dev to start the development server.
  • Open your browser to http://localhost:3000 to see the included example code running.
Clone this wiki locally