Hello, I haven't exactly found the answer to this, maybe there is no best one. Django docs are not clear on this thing.
I'm not sure what is a good practice to set up a django project. Sure I have re-usable apps. But I always need some glue-code.
I find myself always creating "core" app for each project, which usually serves homepape.
Then in project url config I do something like this:
(r'^/$', include(core.urls))
Is this the way to go? Or do you have a better idea?