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

Merge current upstream changes #12

Closed ehmatthes closed 3 years ago

ehmatthes commented 3 years ago

As of today (10/18/20), this fork is 86 commits behind the official heroku buildpack. Try merging the upstream changes, and see how much conflict there is.

I haven't done this before; my guess is one good approach if there are multiple conflicts is to bisect the upstream changes, and try merging ie 43 commits ago, and isolate pretty quickly specific commits that caused conflicts.

See: https://docs.github.com/en/free-pro-team@latest/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork

ehmatthes commented 3 years ago

Helpful info:

$ git diff --name-only 42507a3f9ae0a1121a30598d3d6ada2b91ce1468
README.md
bin/compile
bin/steps/autoconfigure
bin/steps/collectstatic
bin/steps/static_settings_block.txt

These are the files that have changed since my first commit. I think collectstatic just has diagnostic print statements.

ehmatthes commented 3 years ago
ehmatthes commented 3 years ago