A custom template for initializing a new Django project with our CAL-ACCESS applications.
Uses the built-in Django startproject templating system.
Still experimental, so don't get your hopes up.
Create a virtual enviroment to work inside.
$ virtualenv my-environmentJump in and turn it on.
$ cd my-environment
$ . bin/activateInstall Django.
$ pip install djangoCreate a new Git repository.
$ git init repoDownload and install a project in there using this template.
$ django-admin.py startproject --extension=py,.gitignore --template=https://github.com/california-civic-data-coalition/django-calaccess-project-template/archive/master.zip project repoNow that the template has landed, jump in and install the project's Python dependencies.
$ cd repo
$ pip install -r requirements.txt