This git repository helps you get up and running quickly w/ a PyroCMS installation on OpenShift. The backend database is MySQL and the database name is the same as your application name (using $_ENV['OPENSHIFT_APP_NAME']). You can call your application by whatever name you want (the name of the database will always match the application).
Create an account at http://openshift.redhat.com/
Create a php-5.3 application (you can call your application whatever you want)
rhc app create -a pyrocms -t php-5.3
Add MySQL support to your application
rhc app cartridge add -a pyrocms -c mysql-5.1
Add this upstream pyrocms repo
cd pyrocms
git remote add upstream -m master git://github.com/Atriedes/openshift-pyrocms.git
git pull -s recursive -X theirs upstream master
# note that the git pull above can be used later to pull updates to PyroCMSs
Then push the repo upstream
git push
What you have todo is complete web installation of PyroCMS. Database config in installation are already set using openshift environment. You just fill other info like site name, email, site description and etc.