No description
Find a file
2023-11-19 08:42:50 -05:00
prisma chore: Remove sqlite file 2023-11-19 08:26:05 -05:00
src misc: Remove unnecessary enhance 2023-11-19 08:42:50 -05:00
static Initial commit 2023-11-18 15:38:51 -05:00
.eslintignore Initial commit 2023-11-18 15:38:51 -05:00
.eslintrc.cjs Basic auth flow (no signout) 2023-11-19 08:15:37 -05:00
.gitignore chore: Ignore DB files 2023-11-19 08:25:11 -05:00
.npmrc Initial commit 2023-11-18 15:38:51 -05:00
.prettierignore Initial commit 2023-11-18 15:38:51 -05:00
.prettierrc Basic auth flow (no signout) 2023-11-19 08:15:37 -05:00
.rtx.toml Initial commit 2023-11-18 15:38:51 -05:00
package.json Basic auth flow (no signout) 2023-11-19 08:15:37 -05:00
pnpm-lock.yaml Basic auth flow (no signout) 2023-11-19 08:15:37 -05:00
README.md Initial commit 2023-11-18 15:38:51 -05:00
svelte.config.js Basic auth flow (no signout) 2023-11-19 08:15:37 -05:00
tsconfig.json Basic auth flow (no signout) 2023-11-19 08:15:37 -05:00
vite.config.ts Basic auth flow (no signout) 2023-11-19 08:15:37 -05:00

create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npm create svelte@latest

# create a new project in my-app
npm create svelte@latest my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.