https://github.com/claudiob/django-start
https://github.com/claudiob/django-start
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/claudiob/django-start
- Owner: claudiob
- Created: 2011-10-13T15:15:14.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-10-12T06:27:41.000Z (over 13 years ago)
- Last Synced: 2025-01-22T10:24:15.332Z (5 months ago)
- Language: JavaScript
- Homepage: http://ff0000.github.com/2011/10/django-hands-on-tutorial/
- Size: 1.09 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Django-start installs a script which allows the easy creation of Django
projects and applications based the layout used at RED Interactive Agency.In-depth tutorial
==================Available at http://ff0000.github.com/2011/10/django-hands-on-tutorial/
Creating a project
==================
pip install django-start
django-start.py project example
This will use the default project template, which includes
[red-boilerplate](https://github.com/ff0000/red-boilerplate).Running project
===============cd example
virtualenv env
source env/bin/activate
cd project
python manage.py require
python manage.py sync
python manage.py serverUsing a custom project template
===============================If you would prefer to use a custom project template than the one included in
this application, create your custom project template directory and call the
command script like this:django-start.py --template-dir=/your/custom/template project new_example