- Created /api/bookings/[id]/cancel endpoint for booking cancellation - Created /api/bookings/[id]/reschedule endpoint for booking rescheduling - Updated createGoogleCalendarEvent to include booking notes and management links in description - Added cancel and reschedule pages for users - Calendar events now include cancel and reschedule URLs in description - Fixed Prisma import in tests
13 lines
510 B
Bash
13 lines
510 B
Bash
# Database
|
|
DATABASE_URL="postgresql://postgres:postgres@localhost:55002/eventme?schema=public"
|
|
|
|
# NextAuth (both formats for compatibility)
|
|
NEXTAUTH_URL="http://localhost:3000"
|
|
NEXTAUTH_SECRET="your-secret-here-generate-with-openssl-rand-base64-32"
|
|
AUTH_URL="http://localhost:3000"
|
|
AUTH_SECRET="your-secret-here-generate-with-openssl-rand-base64-32"
|
|
|
|
# Google OAuth (for Calendar integration)
|
|
GOOGLE_CLIENT_ID="your-google-client-id.apps.googleusercontent.com"
|
|
GOOGLE_CLIENT_SECRET="your-google-client-secret"
|