From 4b12c58af1e147bd2ee698565f1f8104577853d1 Mon Sep 17 00:00:00 2001 From: Malaber Date: Sun, 16 Mar 2025 15:28:24 +0100 Subject: [PATCH] Make beta use production settings --- config/database.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/database.yml b/config/database.yml index 1853654..2e10203 100644 --- a/config/database.yml +++ b/config/database.yml @@ -20,8 +20,12 @@ test: <<: *default database: db/test.sqlite3 -production: +production: &production url: <%= ENV.fetch("POSTGRES_URL", nil) %> username: <%= ENV.fetch("POSTGRES_USERNAME", nil) %> password: <%= ENV.fetch("POSTGRES_PASSWORD", nil) %> pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> + +beta: + # just use the production settings + <<: *production