i'm constantly facing the following naming-problem.
let's say you are going to create a web gallery, because you need one.
so you start with:
django-admin.py startproject gallery
and now, you want to do "./manage.py startapp <app-name>".
but what should the app-name be?
from a practical point of view, it should be 'gallery' again,
because that's what you are going to create.
but i remember that once i had a problem with the app having the same
name as the project, so i'd rather not do that.
so, what should happen now?
call the app as 'main'? seems as a particularly ugly solution.
so, how do you name your 'main' app in a django-project?
gabor
> so, how do you name your 'main' app in a django-project?
i give a name related to the website
--
regards
kg
http://lawgon.livejournal.com
http://nrcfosshelpline.in/web/
startproject mydomain.com
startapp blog
For me it depends on project's type.
If a project is autonomous and serves one purpose then, yes, I call the
main app 'main' and it could even be the only app in the project.
If a project is multi-purpose and just powers a whole site or many parts
of it then there is no concept of main app at all and all apps are named
by their function.