Skip to content

Instantly share code, notes, and snippets.

@mt9304
Created October 21, 2018 01:05
Show Gist options
  • Select an option

  • Save mt9304/2c8014ffed16adfe072970050f8643ae to your computer and use it in GitHub Desktop.

Select an option

Save mt9304/2c8014ffed16adfe072970050f8643ae to your computer and use it in GitHub Desktop.
default: &default
adapter: postgresql
encoding: unicode
database: RT_def
pool: 5
username: <%= ENV['RT_DATABASE_USER'] %>
password: <%= ENV['RT_DATABASE_PASSWORD'] %>
development:
adapter: postgresql
encoding: unicode
database: RT_dev
pool: 5
username: <%= ENV['RT_DATABASE_USER'] %>
password: <%= ENV['RT_DATABASE_PASSWORD'] %>
test:
adapter: postgresql
encoding: unicode
database: RT_test
pool: 5
username: <%= ENV['$RT_DATABASE_USER'] %>
password: <%= ENV['$RT_DATABASE_PASSWORD'] %>
production:
adapter: postgresql
encoding: unicode
database: RT_prod
pool: 5
username: <%= ENV['RT_DATABASE_USER'] %>
password: <%= ENV['RT_DATABASE_PASSWORD'] %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment