-
Notifications
You must be signed in to change notification settings - Fork 7
/
example.cfg
37 lines (26 loc) · 1.28 KB
/
example.cfg
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
36
37
# You can use a file containing environment vars like this:
# APP_SETTINGS=/path/to/envfile.cfg freezing-server
DEBUG=true
# The SECRET_KEY is used by Flask to sign sessions. Set this to something else.
SECRET_KEY=e6c07402-0307-11e8-b087-000000000000
# The URL to the database. Note that the pymysql driver must be explicitly specified.
SQLALCHEMY_URL=mysql+pymysql://freezing:[email protected]/freezing?charset=utf8mb4&binary_prefix=true
# Configuration for the Strava client. These settings come from your App setup.
STRAVA_CLIENT_ID=?
STRAVA_CLIENT_SECRET=?
STRAVA_ACTIVITY_CACHE_DIR=/path/to/cache/activities
WUNDERGROUND_API_KEY=?
WUNDERGROUND_CACHE_DIR=/path/to/cache/wunderground
# Comma-separated list of Strava Clubs that are the participating teams.
TEAMS=1234,1235
# Comma-separated list of teams that should be included for overall stats but are not "playing the game"
OBSERVER_TEAMS=5678,9013
# Main team ID that everyone should join
MAIN_TEAM=324147
# The competition title
COMPETITION_TITLE='BikeArlington Freezing Saddles 2019'
# The start date of the competition -- WITH TIME ZONE
START_DATE=2018-01-01T00:00:00-05:00
# The end date of the competition -- WITH TIME ZONE. The sync will stop fetching rides after this date (plus grace
# period)
END_DATE=2018-03-20T00:01:00-04:00