django-startproject
django-startproject copied to clipboard
Boilerplate code for new Django projects.
I've added 2 more variables: myrepouser and myreponame. Now fabfile respect them.
Basic support for anything with a clone command (git, mercurial, bzr?) Wondering if there's any interest in something like this. Inspired by Idan Gazit's Djangocon keynote. Can be a starting...
Hey Pete, I'm about to customize the project for my own purposes, but found out my recent 2 commits could improve the original too.
This is used in _every_ project I know. ``` TEMPLATE_CONTEXT_PROCESSORS += ( 'django.core.context_processors.request', ) ```
I installed via: pip install django-startproject When running `django-startproject.py myproj` it fails silently w/o creating a project directory because the project_template directory isn't present within the installed package.
I ran _django-startproject.py premium-support_ and filled out the information as follows: Project name [PROJECT]: premium-support Project author [Lincoln Loop]: Michael Development server [dev.lincolnloop.com]: [redacted] Repository location [cambridge.lincolnloop.com]: [redacted] After that,...
I believe the statement: ``` TEMPLATE_CONTEXT_PROCESSORS += ( 'staticfiles.context_processors.static_url', ) ``` is obsolete as django (at least 1.3 does) automatically includes django.core.context_processors.static.
How is the conf module used? What is conf.common? etc.