Skip to content

Instantly share code, notes, and snippets.

@bigfive
Created April 1, 2014 03:53
Show Gist options
  • Save bigfive/9907418 to your computer and use it in GitHub Desktop.
Save bigfive/9907418 to your computer and use it in GitHub Desktop.
Magnum CI example db config
core: &core
adapter: postgresql
host: 127.0.0.1
username: postgres
database: magnum<%= ENV['TEST_ENV_NUMBER'] %>
development:
<<: *core
test:
<<: *core
staging:
<<: *core
production:
<<: *core
@bigfive
Copy link
Author

bigfive commented Apr 1, 2014

unlink config/database.yml || :
curl -o config/database.yml 'https://gist.githubusercontent.com/bigfive/9907418/raw/database.yml'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment