-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.py
31 lines (28 loc) · 844 Bytes
/
config.py
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
import os
DEV_CONFIG = {
'debug': True,
'env': 'development',
'host': '0.0.0.0',
'port': 3333,
'twitter': {
'customer_key': os.environ.get('TW_CUSTOMER_KEY'),
'customer_secret': os.environ.get('TW_CUSTOMER_SECRET'),
'callback_url': "http://0.0.0.0:3333/oauthorized"
},
'secret_key': os.environ.get('TWITTER_FAV_SECRET')
}
PROD_CONFIG = {
'debug': False,
'env': 'production',
'host': '0.0.0.0',
'port': 3333,
'twitter': {
'customer_key': os.environ.get('TW_CUSTOMER_KEY'),
'customer_secret': os.environ.get('TW_CUSTOMER_SECRET'),
'callback_url': "http://twitter-gui.hbtn.io/oauthorized"
},
'secret_key': os.environ.get('TWITTER_FAV_SECRET')
}
CONFIG = DEV_CONFIG
if os.environ.get('ENV') == 'production':
CONFIG = PROD_CONFIG