use real env variables

This commit is contained in:
Torben Haack
2024-10-10 13:16:23 +02:00
parent 7c93eedbb4
commit d09eeb9d01
2 changed files with 1 additions and 13 deletions

View File

@ -1,11 +0,0 @@
import { z } from "zod";
/**
* Environment variables
*/
export const env = {
OAUTH: {
CLIENT_ID: z.string().parse(process.env.OAUTH_CLIENT_ID ?? ""),
CLIENT_SECRET: z.string().parse(process.env.OAUTH_CLIENT_SECRET ?? ""),
},
};