initial commit
This commit is contained in:
15
packages/env/src/server.ts
vendored
Normal file
15
packages/env/src/server.ts
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import "dotenv/config";
|
||||
import { createEnv } from "@t3-oss/env-core";
|
||||
import { z } from "zod";
|
||||
|
||||
export const env = createEnv({
|
||||
server: {
|
||||
DATABASE_URL: z.string().min(1),
|
||||
BETTER_AUTH_SECRET: z.string().min(32),
|
||||
BETTER_AUTH_URL: z.url(),
|
||||
CORS_ORIGIN: z.url(),
|
||||
NODE_ENV: z.enum(["development", "production", "test"]).default("development"),
|
||||
},
|
||||
runtimeEnv: process.env,
|
||||
emptyStringAsUndefined: true,
|
||||
});
|
||||
9
packages/env/src/web.ts
vendored
Normal file
9
packages/env/src/web.ts
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
import { createEnv } from "@t3-oss/env-core";
|
||||
import { z } from "zod";
|
||||
|
||||
export const env = createEnv({
|
||||
clientPrefix: "VITE_",
|
||||
client: {},
|
||||
runtimeEnv: (import.meta as any).env,
|
||||
emptyStringAsUndefined: true,
|
||||
});
|
||||
Reference in New Issue
Block a user