django-template
provides a template for Django templates,
based on several sources. To use this template run the following command:
django-admin.py startproject --template=https://github.com/motiteux/django-template/zipball/master --extension=py,html,md,rst,gitignore project_name
Note
The text following this comment block will become the README.rst of the new project.
- python >= 2.7
- Django >= 1.5.*
Get the code at <GIT_REPO>, using
git clone <GIT_REPO> {{ project_name }}
If pip is your thing:
cd {{ project_name }}
pip install -r requirements.txt
cd {{ project_name }}
cp {{ project_name }}/settings/personal.py.dist {{ project_name }}/settings/personal.py
vi {{ project_name }}/personal.py
python manage.py syncdb
python manage.py migrate
python manage.py runserver
Open browser to http://127.0.0.1:8000