-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathenv.example
More file actions
43 lines (35 loc) · 1.31 KB
/
env.example
File metadata and controls
43 lines (35 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Database
# Supabase Database Configuration
NEXT_PUBLIC_SUPABASE_URL="https://your-project.supabase.co"
NEXT_PUBLIC_SUPABASE_ANON_KEY="your-anon-key-here"
SUPABASE_SERVICE_ROLE_KEY="your-service-role-key-here"
# Authentication
NEXTAUTH_URL="http://localhost:3000"
NEXTAUTH_SECRET="your-secret-key-here"
# Stripe Payments (Optional - for processing payments - work in progress)
# Uncomment these lines if you want to enable payments
# STRIPE_PUBLISHABLE_KEY="pk_test_..."
# STRIPE_SECRET_KEY="sk_test_..."
# STRIPE_WEBHOOK_SECRET="whsec_..."
# Email Configuration
SMTP_HOST="smtp.gmail.com"
SMTP_PORT="587"
SMTP_USER="your-email@gmail.com"
SMTP_PASSWORD="your-app-password"
FROM_EMAIL="noreply@yourvenue.com"
# Venue Configuration
VENUE_NAME="Your Theatre Name"
VENUE_EMAIL="info@yourvenue.com"
VENUE_PHONE="+44 1234 567890"
VENUE_ADDRESS="123 Theatre Street, Your City, YC1 2AB"
# Application Settings
APP_URL="http://localhost:3000"
ADMIN_EMAIL="admin@yourvenue.com"
# Optional: File Storage (if using cloud storage)
# AWS_ACCESS_KEY_ID="your-access-key"
# AWS_SECRET_ACCESS_KEY="your-secret-key"
# AWS_REGION="eu-west-2"
# AWS_S3_BUCKET="your-bucket-name"
# Branding (override defaults via ThemeProvider)
# Option A: External stylesheet with CSS variables (recommended)
# NEXT_PUBLIC_BRAND_STYLESHEET="https://your-cdn.com/brand.css"