-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
35 lines (30 loc) · 1.46 KB
/
Copy pathenv.example
File metadata and controls
35 lines (30 loc) · 1.46 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
# Playlist Porter - Environment Configuration
# Copy this file to .env and fill in your values
# =============================================================================
# DEPLOYMENT ENVIRONMENT
# =============================================================================
ENVIRONMENT=production
DEBUG=false
# =============================================================================
# SPOTIFY API CONFIGURATION
# =============================================================================
# Create a Spotify app at https://developer.spotify.com/dashboard
SPOTIFY_CLIENT_ID=your_spotify_client_id_here
SPOTIFY_CLIENT_SECRET=your_spotify_client_secret_here
# =============================================================================
# API CONFIGURATION
# =============================================================================
# Backend API URL for frontend to connect to
API_URL=http://localhost:8000
# =============================================================================
# DEVELOPMENT OVERRIDES
# =============================================================================
# Uncomment these for development
# ENVIRONMENT=development
# DEBUG=true
# API_URL=http://backend:8000 # For Docker Compose
# =============================================================================
# PRODUCTION OVERRIDES
# =============================================================================
# For production deployment, adjust these:
# API_URL=https://api.yourdomain.com