OrganizedFellow Posted August 26, 2014 Share Posted August 26, 2014 How many of you use a service like OpenShift? I ask because I am looking to change my development methods. I have used it before. But at the time I didn't see the value in it. Now with my use of GIT rising and my worrisome failing WAMP server (discussed in a previous post) I need something more robust than just working on my local machine. Do you use OpenShift? Heroku? Amazon? If so, which? why? Give me some ideas on how I can improve my development. 2 Link to comment Share on other sites More sharing options...
Philipp Posted August 26, 2014 Share Posted August 26, 2014 We're neither using one of the three you named. At the moment, we (2 people, sometimes 3) setup a subdomain on our webserver and develop together via FTP. For large projects, we're using git (via bitbucket) and we commit to the repo and then the server replace the files. This is far from optimal but it works, we can show the progress to clients, work on the same database etc. I would really like something were I can use GIT as a tool to monitor code changes but have the flexibility of a simple ftp login and where I can show progress to clients. 2 Link to comment Share on other sites More sharing options...
blad Posted August 27, 2014 Share Posted August 27, 2014 I didn´t know about OpenShift. I work in lan, when I want to show changes (ip public/site) Link to comment Share on other sites More sharing options...
cstevensjr Posted August 27, 2014 Share Posted August 27, 2014 @OrganizedFellow, Thanks for mentioning OpenShift. I hadn't followed Red Hat in quite some time, so it was enjoyable to see what they have been up to. Best Regards, Charles Link to comment Share on other sites More sharing options...
LostKobrakai Posted August 27, 2014 Share Posted August 27, 2014 I would really like something were I can use GIT as a tool to monitor code changes but have the flexibility of a simple ftp login and where I can show progress to clients. Git Hooks and a php file on the server that inits the git pull on calling. So it always stays in sync with your git server version. The database has to be updated manually, at least if you want to keep it simple, but that has to be done with a ftp server as well. Link to comment Share on other sites More sharing options...
OrganizedFellow Posted August 28, 2014 Author Share Posted August 28, 2014 ... The database has to be updated manually, at least if you want to keep it simple, but that has to be done with a ftp server as well. The simplest tool that I have found for updating databases manually between two different installations is adminer. It's a tiny tiny script much like phpmyadmin. I install it at the root of all my sites. 2 Link to comment Share on other sites More sharing options...
LostKobrakai Posted August 28, 2014 Share Posted August 28, 2014 I would still describe this as manual updating. Git hooks provide a fully automated way to get the lastest commited files from git to your server. 1 Link to comment Share on other sites More sharing options...
Christian Posted December 26, 2015 Share Posted December 26, 2015 I just stumble openshift and created some quickstart for it: https://processwire.com/talk/topic/11777-openshift-processwire-quickstart/ Link to comment Share on other sites More sharing options...
Recommended Posts