File tree 2 files changed +41
-1
lines changed
2 files changed +41
-1
lines changed Original file line number Diff line number Diff line change @@ -13,5 +13,4 @@ ghostdriver.log
13
13
__pycache__ /
14
14
node_modules /
15
15
* .pyc
16
- config.yaml
17
16
data
Original file line number Diff line number Diff line change
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 :
You can’t perform that action at this time.
0 commit comments