Skip to content

Instantly share code, notes, and snippets.

@monkseal
Created June 10, 2015 17:19
Show Gist options
  • Save monkseal/3b9aac875eee50cae9c8 to your computer and use it in GitHub Desktop.
Save monkseal/3b9aac875eee50cae9c8 to your computer and use it in GitHub Desktop.
Modified database.yml with different postgres port
default: &default
adapter: postgresql
encoding: utf8
min_messages: warning
port: 15432
pool: 5
username: blog_user
password: blog_user91x91x
host: 127.0.0.1
development:
<<: *default
database: blog_development
test:
<<: *default
database: blog_test
production:
<<: *default
database: blog_production
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment