https://github.com/iepathos/mezzanine-openshift-1
Mezzanine customized and improved for the OpenShift stack.
https://github.com/iepathos/mezzanine-openshift-1
Last synced: 5 months ago
JSON representation
Mezzanine customized and improved for the OpenShift stack.
- Host: GitHub
- URL: https://github.com/iepathos/mezzanine-openshift-1
- Owner: iepathos
- Created: 2012-12-01T07:45:29.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-12-01T07:48:24.000Z (over 13 years ago)
- Last Synced: 2025-11-09T11:03:14.538Z (7 months ago)
- Language: Python
- Homepage:
- Size: 265 KB
- Stars: 0
- Watchers: 0
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mezzanine-openshift
This project is to provide the simplest way possible to run mezzanine on the
openshift stack with the best possible defaults for development and production.
## Getting up and running
**NOTE**: Taken directly from the django-example by OpenShift.
Create an account at http://openshift.redhat.com/
Install the RHC client tools if you have not already done so:
sudo gem install rhc
Create a python-2.6 application
rhc app create -a mezzanine -t python-2.6
Add this upstream repo
cd mezzanine
git remote add upstream -m master git://github.com/overshard/mezzanine-openshift.git
git pull -s recursive -X theirs upstream master
Then push the repo upstream
git push
You can then access your new mezzanine instance at
http://mezzanine-$yournamespace.rhcloud.com with the username and password
`admin` and `default` respectively.
## Final notes
In `wsgi/openshift/settings/production.py` `DEBUG` is set to `True` in order to
get a default username and password but also for testing your app. Once you
actually go into production be sure to set this to `False`.