Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 389 Bytes

heroku.md

File metadata and controls

28 lines (17 loc) · 389 Bytes

Heroku

DB

create:

heroku pg:backups:capture --app  nameoftheapp
Starting backup of postgresql-dimensional-33144... done

Backing up DATABASE to b004... done

b004 represents the version of flatest backup for the app

download

# url
heroku pg:backups:url b004 --app nameoftheapp


#download to /tmp
cd /tmp
wget $(heroku pg:backups:url b004 --app nameoftheapp)