Skip to content

Commit cf06d3e

Browse files
committed
Revert "Campus Booking System"
This reverts commit 42a7b11.
1 parent 42a7b11 commit cf06d3e

5 files changed

Lines changed: 5 additions & 119 deletions

File tree

CLOUD_DEPLOYMENT.md

Lines changed: 0 additions & 91 deletions
This file was deleted.

client/.env.example

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +0,0 @@
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

client/Dockerfile

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,6 @@ COPY . .
2828
# Set build-time environment variables
2929
ARG NEXT_PUBLIC_API_URL
3030
ENV 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-
4131
ENV NEXT_TELEMETRY_DISABLED=1
4232

4333
# Build the application

client/next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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.

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
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": {
@@ -23,4 +25,4 @@
2325
"@supabase/supabase-js": "^2.95.3",
2426
"lucide-react": "^0.563.0"
2527
}
26-
}
28+
}

0 commit comments

Comments
 (0)