Files
fedora-infra_ansible/roles/taskotron/execdb/templates/settings.py.j2
Josef Skladanka 5fc16ef6a0 Fix small variable-name inconsistencies for resutlsdb
Gets rid of quite some of the conditionals and minimizes the
amount of different variable names used in result/execdb
2016-02-03 13:11:08 +00:00

12 lines
514 B
Django/Jinja

SECRET_KEY = '{{ execdb_secret_key }}'
SQLALCHEMY_DATABASE_URI = 'postgresql+psycopg2://{{ execdb_db_user }}:{{ execdb_db_password }}@{{ execdb_db_host }}:{{ execdb_db_port }}/{{ execdb_db_name }}'
FILE_LOGGING = False
LOGFILR = '/var/log/execdb/execdb.log'
SYSLOG_LOGGING = False
STREAM_LOGGING = True
BUILDBOT_FRONTPAGE_URL = 'https://{{ external_hostname }}/taskmaster'
RESULTSDB_FRONTPAGE_URL = 'https://{{ external_hostname }}/resultsdb'
ARTIFACTS_BASE_URL = 'https://{{ external_hostname }}/artifacts/all'