2024-12-31 11:30:29 +01:00
|
|
|
import { randomBytes } from "crypto";
|
|
|
|
|
import { z } from "zod";
|
|
|
|
|
|
2025-02-18 22:54:15 +01:00
|
|
|
import { createEnv } from "@homarr/env";
|
2025-01-14 19:03:38 +01:00
|
|
|
|
2024-12-31 11:30:29 +01:00
|
|
|
const errorSuffix = `, please generate a 64 character secret in hex format or use the following: "${randomBytes(32).toString("hex")}"`;
|
|
|
|
|
|
|
|
|
|
export const env = createEnv({
|
2025-02-18 22:54:15 +01:00
|
|
|
shared: {
|
|
|
|
|
NODE_ENV: z.enum(["development", "production", "test"]).default("development"),
|
|
|
|
|
},
|
2024-12-31 11:30:29 +01:00
|
|
|
server: {
|
|
|
|
|
SECRET_ENCRYPTION_KEY: z
|
|
|
|
|
.string({
|
|
|
|
|
required_error: `SECRET_ENCRYPTION_KEY is required${errorSuffix}`,
|
|
|
|
|
})
|
|
|
|
|
.min(64, {
|
|
|
|
|
message: `SECRET_ENCRYPTION_KEY has to be 64 characters${errorSuffix}`,
|
|
|
|
|
})
|
|
|
|
|
.max(64, {
|
|
|
|
|
message: `SECRET_ENCRYPTION_KEY has to be 64 characters${errorSuffix}`,
|
|
|
|
|
})
|
|
|
|
|
.regex(/^[0-9a-fA-F]{64}$/, {
|
|
|
|
|
message: `SECRET_ENCRYPTION_KEY must only contain hex characters${errorSuffix}`,
|
|
|
|
|
}),
|
|
|
|
|
},
|
|
|
|
|
runtimeEnv: {
|
|
|
|
|
SECRET_ENCRYPTION_KEY: process.env.SECRET_ENCRYPTION_KEY,
|
2025-02-18 22:54:15 +01:00
|
|
|
NODE_ENV: process.env.NODE_ENV,
|
2024-12-31 11:30:29 +01:00
|
|
|
},
|
|
|
|
|
});
|