python - Django: Deploying an application on Heroku with sqlite3 as the database -
i want deploy application sqlite3 database on heroku. however, seems heroku doesn't support applications sqlite3 database. true? there no way deploy sqlite3-backed application on heroku?
ps: have deployed application using pythonanywhere, know whether there's possible way deploy using heroku.
as heroku's dynos don't have filesystem persists across deploys, file-based database sqlite3 isn't going suitable. it's great db development/quick prototypes, though.
heroku do have a postgres offering suit - free tier , basic $9/month tier hobby/small projects. biggest benefit on sqlite backups wouldn't otherwise (plus other postgres features).
there's guide updating settings.py
use postgres here: https://devcenter.heroku.com/articles/getting-started-with-django#django-settings
Comments
Post a Comment