Learn full stack web development with SvelteKit.
🧑🤝🧑 Clone the project
git clone https://github.com/joysofcode/sveltekit-for-beginners.git📦️ Install dependencies
npm i✏️ Rename .env.example to .env
DATABASE_URL="file:./dev.db"
🔨 Create the database from the Prisma schema
npx prisma db push🌱 Seed the database
npx prisma db seed🔎 Inspect your database with Prisma Studio
npx prisma studio
🦄 Start the project and open http://localhost:3000/
npm run dev🔨 Build and preview
npm run build && npm run preview