You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
We're using the same namespace for our commands. It would be cool if we could find a way to work together. We could aim to have heroku-deploy contain deployment strategies (which is where I was heading), or we could have sub-projects for each strategy. I bet we could find a way for heroku deploy to list all available deployment strategies from sub-projects. That might be easier than sharing them all in one repo.
I'm open to either way. What do you think?
The text was updated successfully, but these errors were encountered:
Hi again. I renamed my plugin to heroku-deploy-rails. I think yours should probably be heroku-deploy-war. Let me know if you change it, because right now my heroku deploy command will look for heroku-deploy in order to know if deploy:war is a valid strategy.
Hey, just FYI: I've built a generic deploy plugin using the Build API over here which allows to deploy whatever you've got. Even if you're not using git at all - it uses the new Platform API.
That allows for more flexibility as you can use whatever you've got to prepare a tarball (or zip, FWIW) that's ready to be deployed, have it uploaded to the Sources endpoint of the Platform API and then create a build from it.
It's not about WAR deployments, which are related to deploying JVM-based projects.
This plugin, however is generic and uses the new [https://devcenter.heroku.com/articles/developing-toolbelt-plug-ins](node.js based plugin architecture) together with the Platform API.
However, your remark about the namespacing is valid and I'll probably use deploy:archive instead.
Hi! I just started working on a Rails deployment heroku plugin: https://github.com/singlebrook/heroku-deploy
We're using the same namespace for our commands. It would be cool if we could find a way to work together. We could aim to have heroku-deploy contain deployment strategies (which is where I was heading), or we could have sub-projects for each strategy. I bet we could find a way for
heroku deploy
to list all available deployment strategies from sub-projects. That might be easier than sharing them all in one repo.I'm open to either way. What do you think?
The text was updated successfully, but these errors were encountered: