Compare commits

...

2 Commits

Author SHA1 Message Date
49ec230be4 remove unecessary SEEDBOX env vars
Some checks failed
ci / build (push) Failing after 1s
ci / Tests & Checks (push) Failing after 1s
2025-08-13 21:43:56 -08:00
4518fff8ac remove unecessary SEEDBOX env vars 2025-08-13 21:43:25 -08:00
2 changed files with 1 additions and 4 deletions

View File

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

View File

@ -31,9 +31,6 @@ const EnvSchema = z.object({
APP_DIR: z.string().default('/app'),
WHISPER_DIR: z.string(),
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);