-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (26 loc) · 736 Bytes
/
.env.example
File metadata and controls
31 lines (26 loc) · 736 Bytes
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
# Google OAuth - Get from Google Cloud Console
GOOGLE_OAUTH_CLIENT_ID=
GOOGLE_OAUTH_CLIENT_SECRET=
# Spotify - Get from Spotify Developer Dashboard
SPOTIFY_CLIENT_ID=
SPOTIFY_CLIENT_SECRET=
# YouTube - Get from Google Cloud Console
YOUTUBE_CLIENT_ID=
YOUTUBE_CLIENT_SECRET=
# Database
DB_HOST=localhost
DB_USER=user
DB_PASSWORD=password
DB_NAME=playlist_tracker
DB_PORT=5432
# App
JWT_SECRET=change-me-to-a-long-random-secret
TOKEN_ENCRYPTION_KEY=0123456789abcdef0123456789abcdef
FRONTEND_URL=http://localhost:3000
BACKEND_URL=http://localhost:8080
NEXT_PUBLIC_BACKEND_URL=http://localhost:8080
# Rate Limiting Configuration
SPOTIFY_REQUESTS_PER_SECOND=10
SPOTIFY_BURST_LIMIT=20
YOUTUBE_REQUESTS_PER_SECOND=1
YOUTUBE_BURST_LIMIT=5