Last active
December 15, 2015 19:09
-
-
Save noxqsgit/5309341 to your computer and use it in GitHub Desktop.
sqlite -> postgres
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
| bundle update | |
| bundle exec taps server sqlite://foo.sqlite3 __user__ __pass__ | |
| bundle exec taps pull postgres://foo:pass@localhost/foo http://__user__:__pass__@localhost:5000 |
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
| source 'https://rubygems.org' | |
| gem 'taps' | |
| gem 'rack', '1.5.0' # see https://github.com/rack/rack/issues/528 | |
| gem 'sinatra' | |
| gem 'pg' | |
| gem 'sqlite3' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment