forked from PuzzleDev/django-jom
-
Notifications
You must be signed in to change notification settings - Fork 1
Installing django jom
msama edited this page Aug 3, 2012
·
4 revisions
django-jom can be downloaded and installed like any other Django application.
To add django-jom to your virtual environment add -e git://github.com/msama/django-jom.git#egg=django-puzzledev-jom
to your requirements.txt file and run pip install -r requirements.txt
as you would normally do for any other git-hosted application.
Then add jom
in the application list of your settings.py file.
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.admin',
'django.contrib.admindocs',
'jom',
...
)