Skip to content

Instantly share code, notes, and snippets.

@anchietajunior
Last active February 11, 2020 01:21
Show Gist options
  • Save anchietajunior/6894b7730b8e8ee57eb386edb5b609be to your computer and use it in GitHub Desktop.
Save anchietajunior/6894b7730b8e8ee57eb386edb5b609be 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_database_development
host: localhost
username: postgres
password: postgres
port: 5432
test:
<<: *default
database: your_database_test
host: localhost
username: postgres
password: postgres
port: 5432
production:
<<: *default
database: your_database
username: deploy
password: <%= ENV['YOUR_DATABASE_PASSWORD'] %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment