-
Clone the repository
-
Install dependencies
bun i
Optionally typecheck environment variables
.envPORT=3000
src/env.tsconst env = z.object({ PORT: z.coerce.number().min(1024).max(65535), });
-
Development mode (debug)
F5 -
Running tests (watch mode)
bun test --watch -
Production mode
bun start