Created
December 1, 2014 16:33
-
-
Save sdabet/203a44d6e501d314bb80 to your computer and use it in GitHub Desktop.
Rails DB configuration for Cloud9 and Heroku
This file contains hidden or 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
# Use postgreSQL on Heroku | |
group :production, :staging do | |
gem "pg" | |
end | |
# Use SQLite on Cloud9 | |
group :development, :test do | |
gem "sqlite3" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment