Add hostname configuration option

This commit is contained in:
2025-04-01 22:36:28 +02:00
parent d46e9a3faf
commit fc302d8ef2
3 changed files with 3 additions and 2 deletions

View File

@@ -13,6 +13,7 @@ export const Config = Schema.Struct({
Schema.String,
Schema.optional,
),
HOSTNAME: Schema.String,
NODE_ENV: pipe(
Schema.Literal("development", "production"),
Schema.optionalWith({ default: constant("development" as const) }),