This module allows you to check if the process is executing
OpenShift and, if so, to obtain information about the
host IP and port you should bind on, your public DNS, and
database connection information.
# Usage
void connectToDb(String jdbcUrl, String user, String password){
// ...
}
void startHttpServer(String ip, Integer port){
// ...
}
shared void run(){
if(openshift.running){
if(openshift.ceylon.running){
...
