limodou wrote:

>
> How do you create your project, using: django-admin.py startproject
> XXX? If you did like this, the settings.py should include default
> apps.
>
Ya, I did create using 'django-admin.py startproject XXX' but I din't
get the default apps included in the settings.py. Thats the basic
reason behind posting the original message to this group.

> >         * django.contrib.auth -- An authentication system.
> >         * django.contrib.contenttypes -- A framework for content types.
> >         * django.contrib.sessions -- A session framework.
> >         * django.contrib.sites -- A framework for managing multiple sites

> Of course you can add them manually. And there are string fromat, just
> like python module. But you should write them just like these:
>
> 'yourprojectname.appname1',
> 'yourprojectname.appname2',
>

As now I don't have the default apps, so can I inlude them in my
settings.py as below :

INSTALLED_APPS (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites'
)

Also, as i don't get the defualts inluded automatically, how will I set
it right? How does django decide which apps to include by default and
will I be able to check whether this setting is right or not ?


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to