Make beta use production settings
This commit is contained in:
parent
2db24d6525
commit
4b12c58af1
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue