-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3209 from jeff1evesque/feature-3208
#3208: Standardize sql entities from 'setup_tables.py'
- Loading branch information
Showing
3 changed files
with
275 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
## | ||
## This file contains general application configurations. | ||
## | ||
## @LOG_LEVEL, defines the application baseline (i.e. handler) level for logs. | ||
## This means the logger level cannot exceed this baseline. | ||
## | ||
## The following are supported 'LOG_LEVEL' values: | ||
## | ||
## - ERROR | ||
## - WARNING | ||
## - INFO | ||
## - DEBUG | ||
## | ||
## Note: the specific log levels can be reviewed: | ||
## | ||
## https://docs.python.org/2/library/logging.html#logging-levels | ||
## | ||
## Note: when referencing a hash path value, remember to prefix the call with | ||
## the above 'general: root' definition. | ||
## | ||
application: | ||
dataset: | ||
anonymous: | ||
max_collection: 50 | ||
max_document: 10 | ||
authenticated: | ||
max_collection: 150 | ||
max_document: 30 | ||
types: | ||
- file_upload | ||
- dataset_url | ||
- json_string | ||
security_key: 'change-this' | ||
model_type: | ||
- svm | ||
- svr | ||
sv_kernel_type: | ||
- linear | ||
- poly | ||
- rbf | ||
- sigmoid | ||
result_type: | ||
- r2 | ||
- decision_function | ||
- probability | ||
log_level: 'DEBUG' | ||
error_log_path: '/log/application/error' | ||
warning_log_path: '/log/application/warning' | ||
info_log_path: '/log/application/info' | ||
debug_log_path: '/log/application/debug' | ||
|
||
crypto: | ||
salt_length: 32 | ||
scrypt_n: 18 | ||
scrypt_r: 8 | ||
scrypt_p: 1 | ||
|
||
validate_password: | ||
password_min_c: 10 | ||
password_max_c: 64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters