· 7 years ago · Mar 29, 2018, 01:24 PM
1from .base import BaseConfig
2
3
4class Config(BaseConfig):
5 DEBUG = False
6 LOG_CONFIG = 'kqueen_ui/utils/logger_config.yml'
7
8 # KQueen UI endpoints
9 HOST = '0.0.0.0'
10 PORT = 5080
11
12 # App secret
13 SECRET_KEY = 'SecretSecretSecret123'
14 SECURITY_PASSWORD_SALT = 'secret_salt'
15
16 # Addons
17 ENABLE_ADDONS = False
18
19 AUTH_OPTIONS = {
20 'local': {
21 'label': 'Local',
22 'notify': True
23 },
24 'ldap': {
25 'label': 'LDAP',
26 'notify': False
27 }
28 }