good forst commit

This commit is contained in:
2026-06-09 02:02:40 +05:30
parent 801c1d7121
commit 249d759e6a
215 changed files with 15425 additions and 1240 deletions
+4 -1
View File
@@ -10,7 +10,10 @@ const envSchema = z.object({
MEILI_MASTER_KEY: z.string().default('tower_meili_dev_key'),
LOG_LEVEL: z.enum(['trace', 'debug', 'info', 'warn', 'error']).default('info'),
WHATSAPP_SESSION_PATH: z.string().default('./sessions'),
TOWER_ADMIN_JIDS: z.string().default(''),
TOWER_PORTAL_BASE_URL: z.string().url().default('http://localhost:3000'),
BCRYPT_ROUNDS: z.coerce.number().int().min(4).max(15).default(10),
JWT_EXPIRES_IN: z.string().default('7d'),
MEMBER_JWT_EXPIRES_IN: z.string().default('30d'),
});
export type Env = z.infer<typeof envSchema>;