mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
Add missing queue database configuration variables to CHANGELOG.md
This commit is contained in:
parent
f85eef199f
commit
ce43b3f1a0
2 changed files with 16 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
## Changed
|
## Changed
|
||||||
|
|
||||||
- SolidQueue is now using PostgreSQL instead of SQLite. Provide `QUEUE_DATABASE_NAME` and `QUEUE_DATABASE_PASSWORD` environment variables to configure it.
|
- SolidQueue is now using PostgreSQL instead of SQLite. Provide `QUEUE_DATABASE_NAME`, `QUEUE_DATABASE_PASSWORD`, `QUEUE_DATABASE_USERNAME`, `QUEUE_DATABASE_PORT` and `QUEUE_DATABASE_HOST` environment variables to configure it.
|
||||||
|
|
||||||
```diff
|
```diff
|
||||||
...
|
...
|
||||||
|
|
@ -22,6 +22,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
+ # PostgreSQL database name for solid_queue
|
+ # PostgreSQL database name for solid_queue
|
||||||
+ QUEUE_DATABASE_NAME: dawarich_development_queue
|
+ QUEUE_DATABASE_NAME: dawarich_development_queue
|
||||||
+ QUEUE_DATABASE_PASSWORD: password
|
+ QUEUE_DATABASE_PASSWORD: password
|
||||||
|
+ QUEUE_DATABASE_USERNAME: postgres
|
||||||
|
+ QUEUE_DATABASE_PORT: 5432
|
||||||
|
+ QUEUE_DATABASE_HOST: dawarich_db
|
||||||
# SQLite database paths for cache and cable databases
|
# SQLite database paths for cache and cable databases
|
||||||
- QUEUE_DATABASE_PATH: /dawarich_db_data/dawarich_development_queue.sqlite3
|
- QUEUE_DATABASE_PATH: /dawarich_db_data/dawarich_development_queue.sqlite3
|
||||||
CACHE_DATABASE_PATH: /dawarich_db_data/dawarich_development_cache.sqlite3
|
CACHE_DATABASE_PATH: /dawarich_db_data/dawarich_development_cache.sqlite3
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,9 @@ development:
|
||||||
<<: *default
|
<<: *default
|
||||||
database: <%= ENV['QUEUE_DATABASE_NAME'] || 'dawarich_development_queue' %>
|
database: <%= ENV['QUEUE_DATABASE_NAME'] || 'dawarich_development_queue' %>
|
||||||
password: <%= ENV['QUEUE_DATABASE_PASSWORD'] %>
|
password: <%= ENV['QUEUE_DATABASE_PASSWORD'] %>
|
||||||
|
username: <%= ENV['QUEUE_DATABASE_USERNAME'] %>
|
||||||
|
port: <%= ENV['QUEUE_DATABASE_PORT'] || '5432' %>
|
||||||
|
host: <%= ENV['QUEUE_DATABASE_HOST'] %>
|
||||||
migrations_paths: db/queue_migrate
|
migrations_paths: db/queue_migrate
|
||||||
cache:
|
cache:
|
||||||
<<: *sqlite_default
|
<<: *sqlite_default
|
||||||
|
|
@ -41,6 +44,9 @@ test:
|
||||||
<<: *default
|
<<: *default
|
||||||
database: <%= ENV['QUEUE_DATABASE_NAME'] || 'dawarich_test_queue' %>
|
database: <%= ENV['QUEUE_DATABASE_NAME'] || 'dawarich_test_queue' %>
|
||||||
password: <%= ENV['QUEUE_DATABASE_PASSWORD'] %>
|
password: <%= ENV['QUEUE_DATABASE_PASSWORD'] %>
|
||||||
|
username: <%= ENV['QUEUE_DATABASE_USERNAME'] %>
|
||||||
|
port: <%= ENV['QUEUE_DATABASE_PORT'] || '5432' %>
|
||||||
|
host: <%= ENV['QUEUE_DATABASE_HOST'] %>
|
||||||
migrations_paths: db/queue_migrate
|
migrations_paths: db/queue_migrate
|
||||||
|
|
||||||
production:
|
production:
|
||||||
|
|
@ -51,6 +57,9 @@ production:
|
||||||
<<: *default
|
<<: *default
|
||||||
database: <%= ENV['QUEUE_DATABASE_NAME'] || 'dawarich_production_queue' %>
|
database: <%= ENV['QUEUE_DATABASE_NAME'] || 'dawarich_production_queue' %>
|
||||||
password: <%= ENV['QUEUE_DATABASE_PASSWORD'] %>
|
password: <%= ENV['QUEUE_DATABASE_PASSWORD'] %>
|
||||||
|
username: <%= ENV['QUEUE_DATABASE_USERNAME'] %>
|
||||||
|
port: <%= ENV['QUEUE_DATABASE_PORT'] || '5432' %>
|
||||||
|
host: <%= ENV['QUEUE_DATABASE_HOST'] %>
|
||||||
migrations_paths: db/queue_migrate
|
migrations_paths: db/queue_migrate
|
||||||
cable:
|
cable:
|
||||||
<<: *sqlite_default
|
<<: *sqlite_default
|
||||||
|
|
@ -70,6 +79,9 @@ staging:
|
||||||
<<: *default
|
<<: *default
|
||||||
database: <%= ENV['QUEUE_DATABASE_NAME'] || 'dawarich_staging_queue' %>
|
database: <%= ENV['QUEUE_DATABASE_NAME'] || 'dawarich_staging_queue' %>
|
||||||
password: <%= ENV['QUEUE_DATABASE_PASSWORD'] %>
|
password: <%= ENV['QUEUE_DATABASE_PASSWORD'] %>
|
||||||
|
username: <%= ENV['QUEUE_DATABASE_USERNAME'] %>
|
||||||
|
port: <%= ENV['QUEUE_DATABASE_PORT'] || '5432' %>
|
||||||
|
host: <%= ENV['QUEUE_DATABASE_HOST'] %>
|
||||||
migrations_paths: db/queue_migrate
|
migrations_paths: db/queue_migrate
|
||||||
cache:
|
cache:
|
||||||
<<: *sqlite_default
|
<<: *sqlite_default
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue