master
Raw Download raw file
1import { z } from "zod";
2
3export const env = z
4	.object({
5		POSTGRES_URL: z.string().default("postgres://postgres:postgres@localhost:5432/sundown"),
6		FLAG: z.string().default("PCTF{test_flag}"),
7	})
8	.parse(process.env);