5 ms·
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 c
by binary_slinger 2y ago
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.
- grandimam 2y agoYes, that annoys me as well. Will take note of your app related suggestion. Thanks a lot.