preparing for taskotron production setup

This commit is contained in:
Tim Flink 2014-07-08 17:25:39 +00:00
parent a07d60886b
commit 405fdaa536
6 changed files with 44 additions and 12 deletions

View file

@ -1,7 +1,15 @@
# while you can use this as a template, we recommend that you use the blockerbugs
# cli to generate a config file
RDB_URL = 'http://127.0.0.1/{{ resultsdb_endpoint }}/api/v1.0'
SECRET_KEY = '{{ resultsdb_frontend_secret_key }}'
{%- if deployment_type == 'dev' %}
SECRET_KEY = '{{ dev_resultsdb_frontend_secret_key }}'
{% endif %}
{%- if deployment_type == 'stg' %}
SECRET_KEY = '{{ stg_resultsdb_frontend_secret_key }}'
{% endif %}
{%- if deployment_type == 'prod' %}
SECRET_KEY = '{{ prod_resultsdb_frontend_secret_key }}'
{% endif %}
FILE_LOGGING = False
LOGFILR = '/var/log/resultsdb_frontend/resultsdb_frontend.log'
SYSLOG_LOGGING = False