Compare commits

..

No commits in common. "49ec230be45b5736ff9e133c9463abbc0ec90ce3" and "82c614f1e37dd7983318d03319822419655c72af" have entirely different histories.

2 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "futureporn", "name": "futureporn",
"private": true, "private": true,
"version": "2.4.2", "version": "2.4.1",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "concurrently npm:dev:serve npm:dev:build npm:dev:worker npm:dev:compose npm:dev:sftp", "dev": "concurrently npm:dev:serve npm:dev:build npm:dev:worker npm:dev:compose npm:dev:sftp",

View File

@ -31,6 +31,9 @@ const EnvSchema = z.object({
APP_DIR: z.string().default('/app'), APP_DIR: z.string().default('/app'),
WHISPER_DIR: z.string(), WHISPER_DIR: z.string(),
LOG_LEVEL: z.string().default('info'), LOG_LEVEL: z.string().default('info'),
SEEDBOX_SFTP_URL: z.string(),
SEEDBOX_SFTP_USERNAME: z.string(),
SEEDBOX_SFTP_PASSWORD: z.string(),
}); });
const parsed = EnvSchema.safeParse(process.env); const parsed = EnvSchema.safeParse(process.env);