Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions env_vars/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ git_branch: development
db_user: "{{ application_name }}"
db_name: "{{ application_name }}"
db_password: password
db_version: 12


# Gunicorn settings. For the number of workers, a good rule to follow is
Expand Down
1 change: 1 addition & 0 deletions env_vars/vagrant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ git_branch: master
db_user: "{{ application_name }}"
db_name: "{{ application_name }}"
db_password: password
db_version: 12


# Gunicorn settings. For the number of workers, a good rule to follow is
Expand Down
4 changes: 2 additions & 2 deletions roles/db/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
update_cache: "{{ update_apt_cache }}"
state: present
name:
- postgresql
- postgresql-contrib
- "postgresql-{{ db_version }}"
- "postgresql-contrib-{{ db_version }}"
- "{{ base_python_package }}-psycopg2"
tags: packages

Expand Down