- Clone
.env.templateto.envand fill in the environment variables:
On macOS or Linux:
Copy code
cp .env.template .envOn Windows (Command Prompt):
Copy code
copy .env.template .envOn Windows (PowerShell):
Copy code
Copy-Item .env.template .env- Install node modules
npm:
npm installpnpm:
pnpm install- Create the database with docker compose
docker compose up -d- Run the Prisma migrations
npx prisma migrate dev- Run with
npm run dev