ehmatthes / heroku-buildpack-python

A demonstration version of the official Heroku buildpack for Python apps, showing how Django deployment can be further simplified.
https://ehmatthes.com/blog/simplified_heroku/
MIT License
16 stars 2 forks source link

Configure database automatically #8

Closed ehmatthes closed 4 years ago

ehmatthes commented 4 years ago

Migrating and using the db should fail, because I'm only using SQLite locally, and Heroku uses Postgres. Automatically install libraries needed to use postgres, and configure settings to use this db when on heroku.

ehmatthes commented 4 years ago

Tasks

ehmatthes commented 4 years ago

Works!