fixing db uri for resultsdb local/dev
This commit is contained in:
parent
6507aea231
commit
f8fecc2d42
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ FEDMSG_PUBLISH = True
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{%- if deployment_type == 'local' or deployment_type == 'dev'%}
|
{%- if deployment_type == 'local' or deployment_type == 'dev'%}
|
||||||
SECRET_KEY = '{{ resultsdb_secret_key }}'
|
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
|
FEDMSG_PUBLISH = False
|
||||||
{% endif %}
|
{% endif %}
|
||||||
FILE_LOGGING = False
|
FILE_LOGGING = False
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue