Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 543 Bytes

File metadata and controls

29 lines (18 loc) · 543 Bytes

ColibriTask SaaS monorepo

Development

Next.js

...

Prisma

Run the following command to start the database:

$ docker compose up -d

With the database running, update the .env file with the following database connection url:

DATABASE_URL="postgresql://postgres:prisma@localhost:5432/postgres?schema=public"

Run migrations with command:

$ npx prisma migrate dev --name init

Use Prisma Studio for the view/edit data in your database.