-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (24 loc) · 1.29 KB
/
Copy path.env.example
File metadata and controls
33 lines (24 loc) · 1.29 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
# ──────────────────────────────────────────────────────────────
# Crow — Environment Configuration
# Copy this file to `.env` and fill in your values.
# ──────────────────────────────────────────────────────────────
# The Odds API (https://the-odds-api.com) — free tier gives 500 req/month.
# Leave blank to run in MOCK mode (deterministic fake odds, no network calls).
ODDS_API_KEY=
# Comma-separated bookmaker regions: us, uk, eu, au
ODDS_REGIONS=us,uk,eu
# Markets to request: h2h (moneyline), spreads, totals
ODDS_MARKETS=h2h,spreads,totals
# decimal | american
ODDS_FORMAT=decimal
# Sports to surface on the homepage (comma-separated Odds API sport keys)
ODDS_SPORTS=soccer_epl,basketball_nba,americanfootball_nfl,icehockey_nhl,baseball_mlb,mma_mixed_martial_arts
# How long (seconds) to cache Odds API responses to protect your quota
ODDS_CACHE_TTL=60
# Server
PORT=4000
NODE_ENV=development
# JWT secret for the demo auth layer
JWT_SECRET=change-me-in-production-please
# Starting demo balance (in credits) for new players
STARTING_BALANCE=10000