forked from cesium-ml/cesium_web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cesium.yaml.example
70 lines (58 loc) · 1.83 KB
/
cesium.yaml.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
app:
secret-key: abc01234 # This secret key can be any random string of
# characters. Typically ``os.urandom(24)`` is
# good enough.
authentication:
# The Stormpath API keys can be downloaded from:
# https://api.stormpath.com
stormpath_api_key_id: 01234
stormpath_api_key_secret: 0124
stormpath_application: cesium
## This section is optional. If not filled in, Google Authentication
## will be disabled.
##
## These values can be obtained from
## https://console.developers.google.com/project
##
## When filling in the form for running on localhost:
##
## - Appliation type: Web
## - Authorized JavaScript origins: blank
## - Authorized redirect URIs: http://localhost:5000/google
## http://your.hosted.server.com
##
## Always include the localhost:5000 for unit testing purposes.
google_client_id:
google_client_secret:
paths:
# Note below that defined variables can be reused in subsequent
# definitions.
data_path: '~/.local/cesium'
err_log_path: '{data_path}/logs/errors_and_warnings.log'
models_folder: '{data_path}/models'
features_folder: '{data_path}/extracted_features'
predictions_folder: '{data_path}/predictions'
ts_data_folder: '{data_path}/ts_data'
upload_folder: '{data_path}/uploads'
custom_feature_script_folder: '{data_path}/uploads/custom_feature_scripts'
temp: '/tmp/cesium'
database:
database: cesium
host:
port: 5432
user: cesium
password:
docker:
enabled: 0
server:
url: http://localhost:5000
xr_engine: netcdf4
##xr_engine: h5netcdf
## testing:
## ## Disable authentication
## disable_auth: 1
##
## ## Use a separate test database
## test_db: 1
##
## debug: 0