-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.py
More file actions
37 lines (27 loc) · 701 Bytes
/
config.py
File metadata and controls
37 lines (27 loc) · 701 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
32
33
34
35
36
37
'''
config.py
===========
ratex config module
:copyright: (c) 2014 by Jeff Perry
'''
CSRF_ENABLED = True
DEBUG = False
import os
basedir = os.path.abspath(os.path.dirname(__file__))
from datetime import datetime
START_DATE = datetime(2014, 6, 1)
ROUTE = [
{'lat': 30.128190, 'lng': -93.699668}, # ORANGE
{'lat': 30.289748, 'lng': -97.737843}, # AUSTIN
{'lat': 32.003416, 'lng': -106.582532}, # EL_PASO
]
# Stormpath
STORMPATH_API_KEY_FILE = '.stormpath.apiKey.properties'
STORMPATH_APPLICATION = 'ratex'
# Secret stuff
from secret import GMAPS_API_KEY
# Ratex
from secret import SECRET_KEY
# Runkeeper
from secret import RK_CLIENT_ID
from secret import RK_CLIENT_SECRET