Skip to content

Instantly share code, notes, and snippets.

@mikeclarke
Created December 12, 2010 22:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeclarke/738378 to your computer and use it in GitHub Desktop.
Save mikeclarke/738378 to your computer and use it in GitHub Desktop.
Installing django-mingus
mkdir /opt/env/
chown django:django /opt/envs
su - django
cd /opt/env
virtualenv --no-site-packages django-mingus
pip install -E django-mingus/ psycopg2
source django-mingus/bin/activate
cd djagno-mingus
git clone git://github.com/montylounge/django-mingus.git
cd django-mingus/mingus
pip install -r stable-requirements.txt
mv local_settings.py.template local_settings.py
./manage.py syncdb
./manage.py loaddata fixtures/test_data.json
./manage.py runserver
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment