What are thoughts around creating a staging environment for my app or should i create a second app on heroku for staging? Which one is better, or preferred?
Thanks.
What are thoughts around creating a staging environment for my app or should i create a second app on heroku for staging? Which one is better, or preferred?
Thanks.
Second app - add the git remote of the new app to your repo so you can deploy to it from a single code base.
Read more at https://devcenter.heroku.com/articles/multiple-environments
heroku db:pull
(from my production app) into my staging app with a heroku db:push
- deploy code to staging, run any migrations and see what breaks. If it's a big DB then pg:backups is used. –
Tricolor heroku db:push
does. It doesn't matter what the local database is, sqlite, pg, mysql - it uses TAPS (github.com/ricardochimal/taps) behind the scenes. –
Tricolor © 2022 - 2024 — McMap. All rights reserved.