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

Beyond a proof of concept #18

Open ehmatthes opened 3 years ago

ehmatthes commented 3 years ago

The initial goal of this project was to provide a proof of concept that all initial deployment work could be done on Heroku's end, and require no local changes. To that end I have taken some shortcuts, such as setting ALLOWED_HOSTS = ['*'] (this has been addressed now).

As each of these is addressed in a more robust way, this moves closer to becoming a reliable real-world buildpack, not just a proof of concept. This issue is meant to keep track of issues that need to be addressed and questions that need to be answered in order to move beyond the proof of concept stage.

ehmatthes commented 3 years ago