-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
27 lines (19 loc) · 842 Bytes
/
.env.example
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
# Mocked: Unnecessary (any value can be used)
# Technically we have a fallback in development so this doesn't even need to be set
SESSION_SECRET=anything_works_here
REFRESH_CACHE_SECRET=anything_works_here
# If you're running the redis db from docker-compose then this is the URL you should use
REDIS_URL="redis://:alex_rocks@localhost:6379"
# If you're running the postgres db from docker-compose then this is the URL you should use
DATABASE_URL="postgresql://alex:alex_rocks@localhost:5432/bereghici_dev_db?schema=public"
SPOTIFY_CLIENT_ID=""
SPOTIFY_CLIENT_SECRET=""
SPOTIFY_REFRESH_TOKEN=""
GA_TRACKING_ID="G-EXP64F8MN8"
SENTRY_DSN=""
GITHUB_TOKEN=""
GITHUB_CLIENT_ID="github_client_id"
GITHUB_CLIENT_SECRET="github_client_secret"
GITHUB_CALLBACK_URL="github_callback_url"
GITHUB_ADMIN_ID="github_admin_id"
ENABLE_TEST_ROUTES=true