Skip to content

Instantly share code, notes, and snippets.

@sdabet
Created December 1, 2014 16:33
Show Gist options
  • Save sdabet/203a44d6e501d314bb80 to your computer and use it in GitHub Desktop.
Save sdabet/203a44d6e501d314bb80 to your computer and use it in GitHub Desktop.
Rails DB configuration for Cloud9 and Heroku
# 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