mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-25 22:41:53 +08:00
Gets rid of quite some of the conditionals and minimizes the amount of different variable names used in result/execdb
12 lines
514 B
Django/Jinja
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'
|