Dependencies to run
- postgres
- bun
- setup biome in ide / editor
env
DATABASE_URL = "postgresql://concord_user:concord_test@localhost:5432/concord_db"
Running
API
cd apps/api
bun run dev
DB
cd packages/database
bun run db:generate
bun run db:migrate
bun run db:push
bun run db:seed
bun run db:studio # optional
Linting and Fixing
bunx turbo format-and-lint # view linting and formatting suggestions, without writing
bunx turbo format-and-lint:fix # write fixes
Alternatively
All commands for DB and API can be run from repo root with:
bunx turbo <script> # db:generate, etc...
Languages
TypeScript
97.1%
CSS
2.8%
HTML
0.1%