feat(api): env vars check on startup

This commit is contained in:
Lars Hampe 2024-09-30 20:56:56 +02:00
parent e0157210df
commit 6cf917afba
2 changed files with 25 additions and 0 deletions

View File

@ -6,6 +6,7 @@ import { cors } from 'hono/cors'
import user from './user'
import { authentication } from './utils/authentication'
import { startup } from './utils/startup'
type User = z.infer<typeof UserOutput>
@ -39,6 +40,7 @@ app.get(
}),
)
startup()
export default {
port: 3000,
fetch: app.fetch,

View File

@ -0,0 +1,23 @@
declare module 'bun' {
interface Env {
POSTGRES_URL: string
CLERK_WEBHOOK_SECRET: string
CLERK_SECRET_KEY: string
CLERK_PUBLISHABLE_KEY: string
}
}
export const startup = () => {
const keys = [
'POSTGRES_URL',
'CLERK_WEBHOOK_SECRET',
'CLERK_SECRET_KEY',
'CLERK_PUBLISHABLE_KEY',
]
keys.map((key) => {
if (!import.meta.env[key]) {
console.error(`Env Var ${key} is missing!`)
process.exit(0)
}
})
}