Use ENV vars for database, secrets, and cable config (Docker support)

This commit is contained in:
Ubuntu
2026-02-06 06:34:50 +00:00
parent eb1010d8af
commit 942b8a54db
2 changed files with 12 additions and 26 deletions

View File

@@ -1,6 +1,6 @@
redis: &redis
adapter: redis
url: redis://localhost:6379/1
url: <%= ENV.fetch('REDIS_URL', 'redis://localhost:6379/1') %>
production: *redis
development: *redis