[Answered ]-Should I use two Postgres databases for Django on Heroku – dev & prod?

1👍

No matter how simple the app is – NEVER mix dev and prod databases.

0👍

The solution is simple – I’ll use sqlite for dev environment, and postgres for prod – and which would be deployed to Heroku.

Heroku doesn’t allow to use sqlite.

Leave a comment