Update env.validation.ts
All checks were successful
CI / build (push) Successful in 57s
Deploy Backend / build-and-deploy (push) Successful in 26s

This commit is contained in:
2026-02-07 01:06:59 +03:00
parent 2cb5b25341
commit 461019707f

View File

@@ -20,7 +20,7 @@ export const envSchema = z.object({
PORT: z.coerce.number().default(3000),
// Database
DATABASE_URL: z.string().url(),
DATABASE_URL: z.string(), // Removed .url() to allow Docker internal hostnames and avoid encoding issues during validation
// JWT
JWT_SECRET: z.string().min(32),