This is simply a project for fun fun fun, collaborating on the web and getting experience using Django and python. This said, we of course hope to get this blog up and running successfully.
Python 2.7
Django version: 1.4.0
If you're in doubt about what Django version you're running, you can do the following to check:
python -c "import django; print django.get_version();"
The Django version is probably the most important one, since python is rather good at not breaking things, and doesn't need to introduce as much structural changes as Django might have to.
asdasdasd
Other than cloning (or forking then cloning) the project down, there are a couple of things that are needed.
To install this Django version 1.4.0, use pip and do
´pip install Django=1.4.0´
After that, install Zinnia's blog app:
pip install django-blog-zinnia
You might also need to do export LANG="en_US.UTF-8", this is a problem/bug in Django version 1.4.
After this, if you wan't to change CSS files, we use compass for this, so you'll need to install that first.
gem install compass
And zinnia also need the compass-susy plugin (note it's the deprecated 0.9 version)
gem install compass-susy-plugin
Views are located in /resources/templates and static files (CSS, Js, images etc) are located in /resources/static.