base con autenticacion, registro, modulo encuestas

This commit is contained in:
2025-06-16 12:02:22 -04:00
commit 475e0754df
411 changed files with 26265 additions and 0 deletions

12
apps/web/lib/env.ts Normal file
View File

@@ -0,0 +1,12 @@
import { createEnv } from '@t3-oss/env-nextjs';
import { z } from 'zod';
export const env = createEnv({
server: {
API_URL: z.string(),
},
client: {},
runtimeEnv: {
API_URL: process.env.API_URL,
},
});