How to deploy customization forks #263
-
I've successfully deployed the standard app to Heroku. Everything is a-okay. Now I want to begin to customize the vanilla deploy. When I first created the Heroku app with the magic button, I input a My hope is that I can simply push changes to my fork and somehow trigger them to build on Heroku, but it's unclear to me from the docs how to make this happen. Anyone have advice? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Hey @palewire, we still deploy our customized Heroku sites manually using the cli integration. You should be able to do that by following the general Heroku CLI docs. You might be able to use a GitHub integration hook to autodeploy your Library site, but my hunch is that the deploys in that case would be triggered by pushes to the main nytimes/library repo, which is not what you want. I think it would be possible to flip the current Procfile integration, so that the customization repo clones in |
Beta Was this translation helpful? Give feedback.
-
Not to give you even more to do, but the ideal integration from my point of view would let me push to my customization repo and have it autodeploy to Heroku. That way I'd only need that slimmed down config repository to make things go. |
Beta Was this translation helpful? Give feedback.
-
@palewire great idea - want to open a new feature request issue for this enhancement? |
Beta Was this translation helpful? Give feedback.
Hey @palewire, we still deploy our customized Heroku sites manually using the cli integration. You should be able to do that by following the general Heroku CLI docs.
You might be able to use a GitHub integration hook to autodeploy your Library site, but my hunch is that the deploys in that case would be triggered by pushes to the main nytimes/library repo, which is not what you want.
I think it would be possible to flip the current Procfile integration, so that the customization repo clones in
nytimes/library
on each deploy and moves the overrides accordingly. If the customization repo had a Procfile like that, customized autodeploys would probably fit the typical Heroku integration patt…