How to set up a Django application on OpenShift DIY using virtualenv

Since RedHat openshift does not support Python 2.7, I prefer to use Do-It-Yourself (DIY).

I was able to install python 2.7, setuptools, PIP successfully using an awesome tutorial . Now I want to configure VirtualEnv and install Django and other libraries.

So, is there any similar (as stated above: step by step) tutorial for customization?

+5
source share
1 answer

I wrote an example application that runs on Python 2.7, Django 1.4, which runs uWSGI (or Gunicorn; developer choice) and Jenkins CI .. Of course, using Virtualenv

https://github.com/ksurya/openshift-diy-py27-django-jenkins (dead-repo gone), https://github.com/joskid/openshift-diy-py27-django-jenkins ( )

:

+5

All Articles