Breezly is a simple blogging website where users can create and share their blogs with other users.
$ pnpm install
# Clerk
CLERK_SIGNATURE=...
CLERK_SECRET_KEY=...
CLERK_PUBLISHABLE_KEY=...
# Database
DATABASE_URL=postgres://username:password@localhost:5432/db-name
# Gateway
GATEWAY_PORT=5000
# Node env
NODE_ENV=development
# development
$ pnpm run start
# watch mode
$ pnpm run start:dev
# production mode
$ pnpm run start:prod
# unit tests
$ pnpm run test
# e2e tests
$ pnpm run test:e2e
# test coverage
$ pnpm run test:cov