-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
45 lines (32 loc) · 1.68 KB
/
env.example
File metadata and controls
45 lines (32 loc) · 1.68 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
43
44
45
# Environment Variables Example
# Copy this file to .env.local and fill in your actual values
# Node Environment
NODE_ENV=development
# API Configuration
NEXT_PUBLIC_API_BASE_URL=https://dev.decoded.style
API_BASE_URL=https://dev.decoded.style
# Google OAuth Configuration
NEXT_PUBLIC_GOOGLE_CLIENT_ID=your_google_client_id_here
# Redirect URIs for different environments
# Development (local)
NEXT_PUBLIC_GOOGLE_REDIRECT_URI=http://localhost:3000/auth/callback
# Development Server (Mac Mini)
# NEXT_PUBLIC_GOOGLE_REDIRECT_URI=https://decoded.style/auth/callback
# NEXT_PUBLIC_GOOGLE_REDIRECT_URI=https://dev.decoded.style/auth/callback
# Production
# NEXT_PUBLIC_GOOGLE_REDIRECT_URI=https://decoded.style/auth/callback
# Server Configuration
PORT=3000
# Optional: Enable direct API calls (bypass proxy)
# NEXT_PUBLIC_USE_DIRECT_API=true
# Optional: Database Configuration (if applicable)
# DATABASE_URL=your_database_url_here
# Optional: Redis Configuration (if applicable)
# REDIS_URL=your_redis_url_here
# Optional: Sentry Configuration (for error tracking)
# NEXT_PUBLIC_SENTRY_DSN=your_sentry_dsn_here
# Invite Code Configuration
# Single invite code (legacy support)
NEXT_PUBLIC_INVITE_CODE=DECODED2025
# Multiple invite codes (JSON array format)
# NEXT_PUBLIC_INVITE_CODES=["DECODED2025","BETA_ACCESS","EARLY_BIRD","WELCOME_2025","JOIN_DECODED","ACCESS_GRANTED","INVITE_ALPHA","BETA_TESTER","FOUNDER_PASS","VIP_ACCESS","DECODED_VIP","ALPHA_USER","BETA_USER","EARLY_ACCESS","FOUNDER_2025","DECODED_BETA","ACCESS_CODE","INVITE_CODE","WELCOME_PASS","JOIN_NOW","DECODED_ALPHA","BETA_PASS","VIP_2025","FOUNDER_VIP","ALPHA_PASS","EARLY_VIP","DECODED_FOUNDER","BETA_FOUNDER","ALPHA_FOUNDER","VIP_FOUNDER"]