Skip to content
Merged
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,11 @@ This project is deployed in accordance to the [DargStack template](https://githu

The `maevsi_postgraphile` database role's username.

- ### `postgres_role_maevsi-tusd_password`
- ### `postgres_role_maevsi_password`

The `tusd` database role's password.

- ### `postgres_role_maevsi-tusd_username`
- ### `postgres_role_maevsi_username`

The `tusd` database role's password.

Expand Down
16 changes: 8 additions & 8 deletions src/development/stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ secrets:
postgres_role_maevsi-postgraphile_username:
# The `maevsi_postgraphile` database role's username.
file: ./secrets/postgres/role_maevsi-postgraphile_username.secret
postgres_role_maevsi-tusd_password:
postgres_role_maevsi_password:
# The `tusd` database role's password.
file: ./secrets/postgres/role_maevsi-tusd_password.secret
postgres_role_maevsi-tusd_username:
file: ./secrets/postgres/role_maevsi_password.secret
postgres_role_maevsi_username:
# The `tusd` database role's password.
file: ./secrets/postgres/role_maevsi-tusd_username.secret
file: ./secrets/postgres/role_maevsi_username.secret
postgres_user:
# The database's default user.
file: ./secrets/postgres/user.secret
Expand Down Expand Up @@ -211,9 +211,9 @@ services:
target: /run/environment-variables/NUXT_TURNSTILE_SECRET_KEY
- source: postgres_db
target: /run/environment-variables/PGDATABASE
- source: postgres_role_maevsi-tusd_password
- source: postgres_role_maevsi_password
target: /run/environment-variables/PGPASSWORD
- source: postgres_role_maevsi-tusd_username
- source: postgres_role_maevsi_username
target: /run/environment-variables/PGUSER
user: node:node # files created inside a docker container, like node_modules by pnpm, gain correct permissions by setting the user to `node`
volumes:
Expand Down Expand Up @@ -398,8 +398,8 @@ services:
- postgres_role_grafana_username
- postgres_role_maevsi-postgraphile_password
- postgres_role_maevsi-postgraphile_username
- postgres_role_maevsi-tusd_password
- postgres_role_maevsi-tusd_username
- postgres_role_maevsi_password
- postgres_role_maevsi_username
- sqitch_target
volumes:
- ../../../sqitch/:/srv/app/
Expand Down
4 changes: 2 additions & 2 deletions src/production/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ services:
target: /run/environment-variables/NUXT_TURNSTILE_SECRET_KEY
- source: postgres_db
target: /run/environment-variables/PGDATABASE
- source: postgres_role_maevsi-tusd_password
- source: postgres_role_maevsi_password
target: /run/environment-variables/PGPASSWORD
- source: postgres_role_maevsi-tusd_username
- source: postgres_role_maevsi_username
target: /run/environment-variables/PGUSER
volumes:
- ./configurations/postgraphile/jwtRS256.key.pub:/run/environment-variables/NUXT_PUBLIC_VIO_AUTH_JWT_PUBLIC_KEY:ro
Expand Down