-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
25 lines (20 loc) · 896 Bytes
/
.env.example
File metadata and controls
25 lines (20 loc) · 896 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
# shellcheck disable=SC2148
# Shared configuration file for EDH PodLog.
# Copy this file to `.env.local` and adjust the values to match your setup.
# --- Frontend ---
# Google OAuth client ID used by Google Identity Services.
# shellcheck disable=SC2034
GOOGLE_CLIENT_ID=REMPLACEZ_MOI_PAR_VOTRE_CLIENT_ID
# Base URL exposed to the frontend for the Python backend. Uncomment to override.
# API_BASE_URL=http://localhost:4310
# --- Backend / MongoDB ---
MONGO_URI=mongodb://127.0.0.1:47017
MONGO_DB_NAME=edh_podlog
MONGO_USERS_COLLECTION=users
MONGO_MOXFIELD_USERS_COLLECTION=moxfield_users
MONGO_DECKS_COLLECTION=decks
MONGO_DECK_SUMMARIES_COLLECTION=deck_summaries
# Comma-separated list of allowed origins for backend CORS checks.
# API_CORS_ALLOW_ORIGINS=http://localhost:3170,http://127.0.0.1:3170
# Run production smoke tests alongside the standard suite when set to 1.
RUN_PROD_SMOKE=0