Whenever you run the command django-admin.py startproject, django automatically loads up a default settings file.

Is it possible to enhance the way this works so that it loads up your customized settings so you don't have to go in and change most of the defaults?
For example things like time zones etc. Just to make the whole process quicker.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

You can modify the project template files in your Django install. In the directory where Django is installed, go to django/conf/project_template/. Here, you can modify the settings.py file used when you create a new project.

link|improve this answer
Yeah, that would work, but I don't really want to have to edit the django source code. – Humphrey Dec 1 '11 at 5:46
feedback

you can fork and customize the django-startproject https://github.com/lincolnloop/django-startproject

link|improve this answer
feedback

You can don't use django-admin.py startproject commant at all. Just create your own project template with your own settings and structure, copy-paste it every time for each new site.

But don't forget about SECRET_KEY, it should be unique for each project.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.