- Framework: Next.js
- Database: Postgres
- ORM: Prisma ORM
- Docker in installed in your local development environment.
mkdir postgres-prisma-starter
cd postgres-prisma-starter
npx degit https://github.com/monolayer/postgres-prisma-starter
npm install
Start the development database server with:
npx monolayer start dev
Then, run the database migrations and seed the database:
npm run db:bootstrap
Finally, run the Next.js development server:
npm run dev
Open http://localhost:3000 in your browser to see the app in action.