Pinax is an ecosystem of reusable Django apps, themes, and starter project
templates.
This collection can be found at http://pinax.github.com.
To give you an example of how one would use Pinax now to start a new site based on the Account Starter Project follow these steps in your shell:
This collection can be found at http://pinax.github.com.
To give you an example of how one would use Pinax now to start a new site based on the Account Starter Project follow these steps in your shell:
$ mkvirtualenv mysite
$ pip install Django==1.4.5
$ django-admin.py startproject --template=https://github.com/pinax/pinax-project-account/zipball/master mysite
$ cd mysite
$ pip install -r requirements.txt
$ python manage.py syncdb
$ python manage.py runserver
from https://github.com/pinax/pinax