IMO One thing that this gets right is naming the package that has settings.py "config". If you use "django-admin startproject <name>" it uses "<name>" for the config package which may not be a good name for a package that mostly will contain configuration.
Another feature might be a script to generate an app which includes a urls.py, and template directory, etc.
IMO One thing that this gets right is naming the package that has settings.py "config". If you use "django-admin startproject <name>" it uses "<name>" for the config package which may not be a good name for a package that mostly will contain configuration.
Another feature might be a script to generate an app which includes a urls.py, and template directory, etc.
Yes, that annoys me as well. Will take note of your app related suggestion. Thanks a lot.