BEAUTY IN SIMPLE
Katsiaryna (Kate) Lupachova
Mobile and web apps developer, freelancer based in
Belarus
(Europe).
Home
Blog
My projects
Digital Garden
About me
linkedin
github
twitter
email
bitbucket
2019 - 2021 © All rights reserved.
Digital Garden
A collection of short solutions to daily tech problems, notes, some thoughts and explorations that might convert into a blog post someday. My take on
Learn in public
concept.
Heroku
last updated Oct. 2020
Git
last updated Jun. 2021
PostgreSQL
last updated Oct. 2020
React
last updated Oct. 2020
VS Code
last updated Oct. 2020
Netlify
last updated Jan. 2021
title: "Heroku"
Heroku
Export database from Heroku
Restore dump to local database
Export database from Heroku
Create backup
heroku pg:backups:capture --app <heroku_app_name>
Download backup
heroku pg:backups:download --app <heroku_app_name>
Restore dump to local database
pg_restore --verbose --clean --no-acl --no-owner -h localhost -U <postgres_username> -d <database> latest.dump