Last active
August 29, 2015 14:23
-
-
Save mixmix/27cf191e80d5751f9611 to your computer and use it in GitHub Desktop.
Webpunch snippets
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
heroku pg:backups capture -a webpunch | |
curl -o latest.dump `heroku pg:backups public-url -a webpunch` | |
dropdb webpunch_development | |
createdb webpunch_development | |
pg_restore --verbose --clean --no-acl --no-owner -d webpunch_development latest.dump | |
------ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@nrankin @ctoynbee thought we could stow some useful snippets here