File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- # =============================================================================
2- # Campus Resource Engine - Client Environment Configuration
3- # =============================================================================
4- # Copy this file to .env.local for local development
5- # For production/deployment, set these in your hosting provider's dashboard
6- # =============================================================================
7-
8- # API and Socket URLs (must match your backend deployed URLs)
9- NEXT_PUBLIC_API_URL = http://localhost:3001/api/v1
10- NEXT_PUBLIC_SOCKET_URL = http://localhost:3001
11-
12- # Supabase Configuration
13- # You must provide these for authentication and real-time features to work
14- NEXT_PUBLIC_SUPABASE_URL = https://your-project.supabase.co
15- NEXT_PUBLIC_SUPABASE_ANON_KEY = your-anon-key
Original file line number Diff line number Diff line change @@ -28,16 +28,6 @@ COPY . .
2828# Set build-time environment variables
2929ARG NEXT_PUBLIC_API_URL
3030ENV NEXT_PUBLIC_API_URL=$NEXT_PUBLIC_API_URL
31-
32- ARG NEXT_PUBLIC_SOCKET_URL
33- ENV NEXT_PUBLIC_SOCKET_URL=$NEXT_PUBLIC_SOCKET_URL
34-
35- ARG NEXT_PUBLIC_SUPABASE_URL
36- ENV NEXT_PUBLIC_SUPABASE_URL=$NEXT_PUBLIC_SUPABASE_URL
37-
38- ARG NEXT_PUBLIC_SUPABASE_ANON_KEY
39- ENV NEXT_PUBLIC_SUPABASE_ANON_KEY=$NEXT_PUBLIC_SUPABASE_ANON_KEY
40-
4131ENV NEXT_TELEMETRY_DISABLED=1
4232
4333# Build the application
Original file line number Diff line number Diff line change 11/// <reference types="next" />
22/// <reference types="next/image-types/global" />
3- import "./.next/dev/ types/routes.d.ts" ;
3+ import "./.next/types/routes.d.ts" ;
44
55// NOTE: This file should not be edited
66// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
Original file line number Diff line number Diff line change 1111 "lint" : " pnpm -r lint" ,
1212 "docker:up" : " docker-compose up -d" ,
1313 "docker:down" : " docker-compose down" ,
14- "db:seed" : " pnpm --filter @campus/server run seed" ,
14+ "db:generate" : " pnpm --filter @campus/server prisma:generate" ,
15+ "db:push" : " pnpm --filter @campus/server exec prisma db push" ,
16+ "db:seed" : " pnpm --filter @campus/server exec prisma db seed" ,
1517 "test:epic3" : " npm run test:epic3 --prefix server"
1618 },
1719 "engines" : {
2325 "@supabase/supabase-js" : " ^2.95.3" ,
2426 "lucide-react" : " ^0.563.0"
2527 }
26- }
28+ }
You can’t perform that action at this time.
0 commit comments