forked from bcgov/sbc-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdotenv_template
44 lines (32 loc) · 1.14 KB
/
dotenv_template
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
#
# This file contains the environment-specific settings that are read by python-dotenv. Place it somewhere above your
# source code and it will be used.
#
# ===== status-api ======================================================================================================
# Flask settings
PYTHONWARNINGS="once"
FLASK_APP=wsgi.py
FLASK_ENV="development"
FLASK_DEBUG=True
POD_TESTING=True
SQLALCHEMY_ECHO=False
# The sentry.io Data Source Name for the project. For local development this should always be blank, to prevent the
# logging (and emailing) of errors. However it can be temporarily set when working with sentry itself.
#
SENTRY_DSN=
SERVICE_SCHEDULE= '[
{
"service_name": "PAYBC",
"available": [
{"dayofweek": "1", "from": "6:00", "to": "21:00"},
{"dayofweek": "2", "from": "15:05", "to": "21:00"},
{"dayofweek": "3", "from": "6:00", "to": "21:00"},
{"dayofweek": "4", "from": "15:05", "to": "21:00"},
{"dayofweek": "5", "from": "6:00", "to": "21:00"},
{"dayofweek": "6", "from": "6:30", "to": "21:00"},
{"dayofweek": "7", "from": "6:30", "to": "21:00"}
],
"outage": [
]
}
]'