You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
562 B
22 lines
562 B
#!/usr/bin/env sh
|
|
|
|
set -eux
|
|
|
|
git rev-parse --show-toplevel
|
|
|
|
APP="${1:-beta}"
|
|
TIMESTAMP=$(date +%s)
|
|
DUMP_FILENAME=$APP.$TIMESTAMP.dump
|
|
|
|
## Uncomment this if you want the latest data
|
|
#heroku pg:backups:capture --app=mciea-$APP
|
|
heroku pg:backups:download --app=mciea-$APP --output=$DUMP_FILENAME
|
|
|
|
bundle exec rake db:drop db:create
|
|
pg_restore --no-acl --no-owner --dbname=mciea_development $DUMP_FILENAME
|
|
|
|
bundle exec rails db:environment:set RAILS_ENV=development
|
|
|
|
# clean up after ourselves; comment this out if you want to hold on to dump file
|
|
rm $DUMP_FILENAME
|