📢 Deployment Fix Applied: If you're experiencing migration issues, see
docs/migration/DEPLOYMENT_READY.md- the automated fix is already in place!
- Sveltekit
- Typescript
- Skeleton UI
- Tailwind CSS
- Vitest
- Playwright
- Prisma DB
- PostgreSQL
# generate the typescript client
npx prisma generate
# run migration scripts against dev environment
npx prisma migrate dev
# push the schema to the database
npx prisma db pushOnce 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 -- --openTo create a production version of your app:
npm run buildYou can preview the production build with npm run preview.