mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 01:01:39 -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
|
||||
|
||||
- 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
|
||||
...
|
||||
|
|
@ -22,6 +22,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
+ # PostgreSQL database name for solid_queue
|
||||
+ QUEUE_DATABASE_NAME: dawarich_development_queue
|
||||
+ 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
|
||||
- QUEUE_DATABASE_PATH: /dawarich_db_data/dawarich_development_queue.sqlite3
|
||||
CACHE_DATABASE_PATH: /dawarich_db_data/dawarich_development_cache.sqlite3
|
||||
|
|
|
|||
|
|
@ -22,6 +22,9 @@ development:
|
|||
<<: *default
|
||||
database: <%= ENV['QUEUE_DATABASE_NAME'] || 'dawarich_development_queue' %>
|
||||
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
|
||||
cache:
|
||||
<<: *sqlite_default
|
||||
|
|
@ -41,6 +44,9 @@ test:
|
|||
<<: *default
|
||||
database: <%= ENV['QUEUE_DATABASE_NAME'] || 'dawarich_test_queue' %>
|
||||
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
|
||||
|
||||
production:
|
||||
|
|
@ -51,6 +57,9 @@ production:
|
|||
<<: *default
|
||||
database: <%= ENV['QUEUE_DATABASE_NAME'] || 'dawarich_production_queue' %>
|
||||
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
|
||||
cable:
|
||||
<<: *sqlite_default
|
||||
|
|
@ -70,6 +79,9 @@ staging:
|
|||
<<: *default
|
||||
database: <%= ENV['QUEUE_DATABASE_NAME'] || 'dawarich_staging_queue' %>
|
||||
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
|
||||
cache:
|
||||
<<: *sqlite_default
|
||||
|
|
|
|||
Loading…
Reference in a new issue