1. Docs

Getting Started

Starting your project

  1. Go to the repo page

  2. Click on “Use this template” button to create a new repository from this template

Fill out the details and create your new repository.

via Git cli

  1. Clone the repo
git clone git@github.com:SvelteStarterKit/svelte-starter-kit-ts.git [YOUR_APP_NAME]
  1. Update your remote origin and push
cd [YOUR_APP_NAME]
rm -rf .git
git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin [YOUR_ORIGIN_URL]
git push -u origin main

Starting your project

pnpm install
pnpm run dev

OR

npm install
npm run dev