Skip to content

Commit

Permalink
default USE_CACHE to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sacramentix committed May 21, 2024
1 parent 45c2798 commit 4e17ea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql-dump-to-arango/env.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import z, { ZodError } from 'zod';

const envSchema = z.object({
USE_CACHE: z.coerce.number().default(0),
USE_CACHE: z.coerce.number().default(1),
WIKI_LANG: z.string().min(1),
}).catchall(z.string());

Expand Down

0 comments on commit 4e17ea1

Please sign in to comment.