Files
droidclaw/server/src/env.ts
Sanju Sivalingam bc014fd587 feat: scaffold Hono server with auth and health check
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 14:07:19 +05:30

10 lines
254 B
TypeScript

export const env = {
DATABASE_URL: process.env.DATABASE_URL!,
PORT: parseInt(process.env.PORT || "8080"),
CORS_ORIGIN: process.env.CORS_ORIGIN || "http://localhost:5173",
};
if (!env.DATABASE_URL) {
throw new Error("DATABASE_URL is not set");
}