mirror of
https://github.com/Freika/dawarich.git
synced 2026-05-08 05:29:24 -05:00
Add config/database.yml.github-actions
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
default: &default
|
||||
adapter: postgresql
|
||||
encoding: unicode
|
||||
database: <%= ENV['DATABASE_NAME'] %>
|
||||
username: <%= ENV['DATABASE_USERNAME'] %>
|
||||
password: <%= ENV['DATABASE_PASSWORD'] %>
|
||||
port: <%= ENV['DATABASE_PORT'] || '5432' %>
|
||||
host: <%= ENV['DATABASE_HOST'] %>
|
||||
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
|
||||
timeout: 5000
|
||||
|
||||
development:
|
||||
<<: *default
|
||||
database: solo_customer_template_development
|
||||
|
||||
test:
|
||||
<<: *default
|
||||
database: solo_customer_template_test
|
||||
|
||||
production:
|
||||
<<: *default
|
||||
database: solo_customer_template_production
|
||||
url: <%= ENV['DATABASE_URL'] %>
|
||||
Reference in New Issue
Block a user