Skip to content

Instantly share code, notes, and snippets.

@dividead
Last active May 4, 2017 12:24
Show Gist options
  • Save dividead/a55997188499cfb3cdab120305954013 to your computer and use it in GitHub Desktop.
Save dividead/a55997188499cfb3cdab120305954013 to your computer and use it in GitHub Desktop.
brew install postgres
createdb `whoami`
psql -U postgres
(pg_restore | psql) -U postgres -d xx < xx.dump
dokku postgres:export brain > brain_dump.sql
scp root@server.com:brain_dump.sql ~/Downloads
pg_restore -U postgres -d brain < brain_dump.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment