(no title)
jarcoal | 7 years ago
* manage.py
* project/settings.py
* project/urls.py
* project/models/ (each model gets it's own file here)
* project/views/ (same for views)
...and so on. And in `INSTALLED_APPS` I just add 'project'.
Makes it so I don't waste a bunch of time trying to figure out which app to put a model in, etc.
digitaltrees|7 years ago
jarcoal|7 years ago
It doesn’t really swim against the current as long as you import models into the __init__.py file in their package.
Scarblac|7 years ago
travisjungroth|7 years ago