An open source application built using
- Install dependencies using pnpm:
pnpm install
- Copy
.env.example
to.env
and update the variables if needed:
cp .env.example .env
- Spin up a local database using Docker, and wait until it's ready (this may take a minute):
docker-compose -f docker-compose-dev.yaml up -d
- Push the Prisma schema to your database:
pnpm db:push
- Start the development server:
pnpm dev