Deploy a private Github repository with whiskey_disk
1–10 of 12 posts
Re: Deploy a private Github repository with whiskey_disk
#2Anyone know of similar solutions?
Re: Deploy a private Github repository with whiskey_disk
#3Re: Deploy a private Github repository with whiskey_disk
#4Sorry if I've not understood correctly, but what is the benefit of this over, say, Capistrano? I'm a little confused.
Other benefits of the tool include putting all config files into version control, and a lot less less magic in your deployments.
Re: Deploy a private Github repository with whiskey_disk
#5I've been looking at similar solutions. I've tried using fluxflex.com, but it only seems to work for public projects. The main purpose of my site is not to have full-scale operations: just a place online to test it. Anyone know of similar solutions?
Re: Deploy a private Github repository with whiskey_disk
#6Re: Deploy a private Github repository with whiskey_disk
#7Sorry if I've not understood correctly, but what is the benefit of this over, say, Capistrano? I'm a little confused.
Good question! The main benefit is you deploy directly from your git-server to your production server, instead of uploading from your own computer. This means a lot faster deploys, especially when your deployments are large or your internet connection is really poor (being able to make deployments quickly while on a 3G connection is awesome). whiskey_disk uses one ssh connection to your server for all work (so less t…
Re: Deploy a private Github repository with whiskey_disk
#8Re: Deploy a private Github repository with whiskey_disk
#9Sorry if I've not understood correctly, but what is the benefit of this over, say, Capistrano? I'm a little confused.
Good question! The main benefit is you deploy directly from your git-server to your production server, instead of uploading from your own computer. This means a lot faster deploys, especially when your deployments are large or your internet connection is really poor (being able to make deployments quickly while on a 3G connection is awesome). whiskey_disk uses one ssh connection to your server for all work (so less t…
Re: Deploy a private Github repository with whiskey_disk
#10Earlier quoted context omitted.
Good question! The main benefit is you deploy directly from your git-server to your production server, instead of uploading from your own computer. This means a lot faster deploys, especially when your deployments are large or your internet connection is really poor (being able to make deployments quickly while on a 3G connection is awesome). whiskey_disk uses one ssh connection to your server for all work (so less t…
I've gotten into the habit of just having git installed on my web server, and pulling directly from there. Is there some reason why whiskey_disk is better?
Where you'd really see benefit would be when you have multiple config files (with database credentials and addresses, for instance) that vary per server and environment involved. In addition, if you need to run post-deploy actions such as building assets, or run database migrations, a tool would help you.
However, until you feel the pain of your current setup, no need to change what works :)