fixing db uri for resultsdb local/dev

This commit is contained in:
Tim Flink 2016-02-02 09:11:09 +00:00
parent 6507aea231
commit f8fecc2d42

View file

@ -10,7 +10,7 @@ FEDMSG_PUBLISH = True
{% endif %}
{%- if deployment_type == 'local' or deployment_type == 'dev'%}
SECRET_KEY = '{{ resultsdb_secret_key }}'
SQLALCHEMY_DATABASE_URI = 'postgresql+psycopg2://{{ resultsdb_db_user }}:{{ resultsdb_db_password }}@{{ resultsdb_db_host_machine }}:{{ resultsdb_db_port }}/{{ resultsdb_db_name }}'
SQLALCHEMY_DATABASE_URI = 'postgresql+psycopg2://{{ resultsdb_db_user }}:{{ resultsdb_db_password }}@{{ resultsdb_db_host }}:{{ resultsdb_db_port }}/{{ resultsdb_db_name }}'
FEDMSG_PUBLISH = False
{% endif %}
FILE_LOGGING = False