Fixes OpenShift

This commit is contained in:
fabianofranz
2014-09-12 03:05:51 -03:00
parent 17288017d8
commit 5c8f016dd6
16 changed files with 191 additions and 0 deletions

View File

@@ -45,6 +45,17 @@ Issue the following command to run the app, the server will listen by default on
java -jar target/commafeed.jar server config.yml
You can use a proxy http server such as nginx or apache.
Deployment on OpenShift
-----------------------------
[OpenShift](https://openshift.redhat.com) is Red Hat's Platform-as-a-Service (PaaS) that allows developers to quickly develop, host, and scale applications in a cloud environment. Commafeed runs perfectly on OpenShift and can even be used in the free tier. Follow the [Getting Started](https://developers.openshift.com/en/getting-started-overview.html) guide and after you sign up and install the Command Line Tools (RHC), do:
rhc create-app commafeed diy-0.1 mysql-5.5
cd commafeed
git remote add upstream -m master https://github.com/Athou/commafeed.git
git pull -s recursive -X theirs upstream master
git push
Local development
-----------------