bun install
Run bun prepare
to initialize husky.
If you already have a postgres running, skip this step.
Populate .dockerenv file. You can use .dockerenv.example
.
bun db:start
To stop the database run bun db:stop
bun prisma migrate dev
bun prisma generate
Make sure to populate all environment variables from .env.example
.
Then link the .env
file in clients folder.
cd packages/client && ln -s ../../.env; cd -
bun dev