-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathconfig.py.example
41 lines (26 loc) · 948 Bytes
/
config.py.example
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
38
39
40
import fakeredis
import redis
class BaseConfiguration(object):
# Statement for enabling the development environment
DEBUG = True
LOG_PATH = 'data/logging.json'
REDIS_URL = 'redis://127.0.0.1:6379/'
REDIS = redis.Redis()
class ProductionConfiguration(BaseConfiguration):
# Statement for enabling the development environment
DEBUG = False
LOG_PATH = 'data/logging.json'
REDIS_URL = 'redis://127.0.0.1:6379/'
REDIS = fakeredis.FakeRedis()
class TestConfiguration(BaseConfiguration):
# Statement for enabling the development environment
DEBUG = True
LOG_PATH = 'data/logging.json'
REDIS_URL = 'redis://127.0.0.1:6379/'
REDIS = fakeredis.FakeRedis()
class IntegrationTestConfiguration(BaseConfiguration):
# Statement for enabling the development environment
DEBUG = True
LOG_PATH='data/logging.json'
REDIS_URL='redis://127.0.0.1:6379/'
REDIS = redis.Redis()