Skip to content

Instantly share code, notes, and snippets.

@harchs
Created April 3, 2020 01:09
Show Gist options
  • Select an option

  • Save harchs/4b08861adce31048de097e4b7844fd4c to your computer and use it in GitHub Desktop.

Select an option

Save harchs/4b08861adce31048de097e4b7844fd4c to your computer and use it in GitHub Desktop.
default: &default
adapter: postgresql
encoding: unicode
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
development:
<<: *default
database: <your db name>
test:
<<: *default
database: <your db name>_test
staging:
<<: *default
database: <your db name>_staging
username:
password: <%= ENV['DATABASE_PASSWORD'] %>
production:
<<: *default
database: <your db name>_production
username:
password: <%= ENV['DATABASE_PASSWORD'] %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment