A Prediction Market on the AT Protocol
at main 6 lines 197 B view raw
1import { z } from "zod" 2 3export const ENV = z.object({ 4 PORT: z.string(), 5 DATABASE_URL: z.stringFormat("postgresql://", (val) => val.startsWith("postgresql://")), 6}).parse(import.meta.env);