make db port changeable
This commit is contained in:
parent
6c919a688f
commit
6a420dee06
2 changed files with 2 additions and 1 deletions
|
@ -4,6 +4,7 @@ cat_user: cat
|
|||
|
||||
cat_postgres_db: cat
|
||||
cat_postgres_user: cat_user
|
||||
cat_postgres_db_port: 5432
|
||||
|
||||
# sensitive info
|
||||
cat_postgres_password: "{{ vault_cat_postgres_password }}"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Run the java jar
|
||||
|
||||
DATABASE_URL="postgresql://localhost:5432/{{ cat_postgres_db }}?user={{ cat_postgres_user }}&password={{ cat_postgres_password }}"
|
||||
DATABASE_URL="postgresql://localhost:{{ cat_postgres_db_port }}/{{ cat_postgres_db }}?user={{ cat_postgres_user }}&password={{ cat_postgres_password }}"
|
||||
PORT="{{ cat_app_port }}"
|
||||
AUTHORIZE-URI="{{ authorize_uri }}"
|
||||
ACCESS-TOKEN-URI="{{ access-token-uri }}"
|
||||
|
|
Loading…
Reference in a new issue