fivestringsurf Posted December 2, 2016 Share Posted December 2, 2016 I have a digitalocean account and would like to be able to auto deploy code to the digitalocean server after a push from my local machine. I've been using beanstalkapp to do this with one of my projects. I love beanstalkapp ... it's easy to use, and well documented. Not being a sys-admin this is important to me. The problem is they only allow 1 free repo and I need another for this charitable app I'm making for my school. Is there any other free repo solution I can use to push code to a staging / production server (at digitalocean) Please keep in mind I'm not a sys-admin so it has to be simple like beanstalkapp. Thanks! Quote Link to comment Share on other sites More sharing options...
shan2batman Posted December 6, 2016 Share Posted December 6, 2016 i dont know the level of complexity you are not looking for but openshift.com is a great start Quote Link to comment Share on other sites More sharing options...
EndiveSoftware Posted February 10, 2017 Share Posted February 10, 2017 Check out this List- https://xebialabs.com/the-ultimate-devops-tool-chest/deployment/ May be help you out Quote Link to comment Share on other sites More sharing options...
jonsjava Posted September 13, 2017 Share Posted September 13, 2017 I had someone on a budget once (read: $10/month). My solution, while not elegant, worked. Ensure your code is in Git Configure the deploy user to have access to Git via SSH Clone the repo into the directory you wish to serve it out of Create a cron that runs ever x minutes/hours that will do the following: cd /path/to/your/code && git reset --hard && git pull origin master This solved their problem. There are better solutions (Jenkins, for example), but if you want simple, cron + git works. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.