-
-
Save cmhobbs/a25b31b18dade3d54443 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
core: &core | |
adapter: postgis | |
encoding: unicode | |
host: 127.0.0.1 | |
username: postgres | |
database: magnum<%= ENV['CI_BUILD_NUMBER'] %> | |
development: | |
<<: *core | |
test: | |
<<: *core | |
staging: | |
<<: *core | |
production: | |
<<: *core |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note that magnum-ci will always try to run
bundle exec rake db:create
and it will always fail. I'm trying to find ways to get rid of that step in their configuration.