-
Clone the repository
-
Install dependencies
bun i
Optionally typecheck environment variables
.env
PORT=3000
src/env.ts
(docs)const env = t.Object({ PORT: t.Numeric({ minimum: 1024, maximum: 65535 }), });
-
Development mode (debug)
F5
-
Running tests (watch mode)
bun test --watch
-
Production mode
bun start