You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
299 B
8 lines
299 B
11 years ago
|
#!/bin/bash
|
||
|
# The logic to start up your application should be put in this
|
||
|
# script. The application will work only if it binds to
|
||
|
# $OPENSHIFT_INTERNAL_IP:8080
|
||
|
export PATH=$OPENSHIFT_RUNTIME_DIR/bin:$PATH
|
||
|
cd $OPENSHIFT_REPO_DIR
|
||
|
rails server -b $OPENSHIFT_INTERNAL_IP -p $OPENSHIFT_INTERNAL_PORT -d
|