Files
lets-event/.env.example
T
Edgar Muniz Berlinck 3cf01dbc85 feat: add booking cancellation and rescheduling endpoints
- 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
2026-02-28 04:00:43 +01:00

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"