Install dependencies
npm install
Make a copy of .env.sample and name it .env
cp .env.sample .env
Apply database schema
npx prisma db push
ℹ️ When using SQlite this command will create prisma/dev.db if it does not exist. If you prefer postgres you easily change provider to "postgres" in prisma/schema.prisma.
Run the development server:
npm run dev
Open http://localhost:3000 in your browser.