Shared Host - Git and Capistrano
Let's get this clear. I'm ready to move to another shared host if I must to. Please, I need as much detail as possible.
In order to have a git repository on my shared host as well as the possibility for deploying my Zend Applications using Capistran开发者_开发百科o, what, in detail, should I ask to shared host companies ?
Thanks a lot in advance.
SSH-access and git should cover it, I guess. In addition to what dependencies your app is using of course.
Edit:
That is, you must be able to log in to your server using ssh, and you should be able to run commands on the server when logged in through ssh. Git should be installed on the server, as Capistrano uses this to check out your code to the path you deploy your app to. Your git repo may be on a different server (like github) if you wish.
If you can't run git on your server, see deploying with capistrano with remote git repo but without git running on production server for a way to get around this limitation.
精彩评论