Imagine you have a single code base, which has a few different applications within it... or at least the ability to run a few different applications. Or, maybe you're Google with your mono repo?
In any case, how do you manage this on Heroku? You don't. Heroku applications assume one repo to one application.
Enter the Multi Procfile buildpack, where every app gets a Procfile!
- Write a bunch of Procfiles and scatter them through out your code base.
- Create a bunch of Heroku apps.
- For each app, set
PROCFILE=relative/path/to/Procfile/in/your/codebase
, and of course:heroku buildpacks:add -a <app> https://github.com/heroku/heroku-buildpack-multi-procfile
- For each app,
git push [email protected]:<app> master
Andrew Gwozdziewycz [email protected] and Cyril David [email protected]