Skip to content

Commit abec3b6

Browse files
committed
Copy config.yaml.defaults to config.yaml
1 parent 1640cac commit abec3b6

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@ ghostdriver.log
1313
__pycache__/
1414
node_modules/
1515
*.pyc
16-
config.yaml
1716
data

config.yaml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
app:
2+
secret-key: abc01234 # This secret key can be any random string of
3+
# characters.
4+
#
5+
# You should re-generate this for your application
6+
# using:
7+
#
8+
# base64.b64encode(os.urandom(50)).decode('ascii')
9+
paths:
10+
# Note below that defined variables can be reused in subsequent
11+
# definitions.
12+
13+
data_path: './data'
14+
models_folder: './data/models'
15+
features_folder: './data/extracted_features'
16+
predictions_folder: './data/predictions'
17+
ts_data_folder: './data/ts_data'
18+
19+
upload_folder: './data/uploads'
20+
custom_feature_script_folder: './data/uploads/custom_feature_scripts'
21+
22+
database:
23+
database: cesium
24+
host: localhost
25+
port: 5432
26+
user: cesium
27+
password:
28+
29+
server:
30+
# From https://console.developers.google.com/
31+
#
32+
# - Create Client ID
33+
# - Javascript origins: https://localhost:5000
34+
# - Authorized redirect URLs: http://localhost:5000/complete/google-oauth2/
35+
#
36+
# You need to have Google+ API enabled; it takes a few minutes to activate.
37+
38+
auth:
39+
debug_login: True
40+
google_oauth2_key:
41+
google_oauth2_secret:

0 commit comments

Comments
 (0)