Hello Dear
You should name your apps without the app word in the end
Example :
INSTALLED_APPS = [
"apps.store'',
" apps.core",
]
This will definitely work
Regards
On Wed, 19 Oct 2022, 7:30 AM regan opere, wrote:
> Many, thanks for the reply. However, I have two apps in the directory
> c
You need to give the django apps you created unique names (try to see them
as separate entities), in your case this would be 'core' and 'store', then
you need to add them to the INSTALED_APPS list like so in the settings file:
[...,
'core.apps.CoreConfig',
'store.apps.StoreConfig',
]
On Wed, Oct
Many, thanks for the reply. However, I have two apps in the directory
called Apps..
so when I name the apps in the settings using
tiles.apps.TilesConfig' it still does'nt work
naming them like this:
'apps.core.apps',
'apps.store.apps',
also still giver the error: django.core.exceptio
Lets take App Directory name tiles.
So inthe installed app list it will be
'tiles.apps.TilesConfig',
Or put simply
'tiles',
Hope it helps .
On Tue, Oct 18, 2022, 06:16 regan opere wrote:
> Hello, I am new to django and I am still learning.
> I have created two apps core and store and I have re
Hello, I am new to django and I am still learning.
I have created two apps core and store and I have registered them in the
settings file of my root directory.
This is the error I get:
django.core.exceptions.ImproperlyConfigured: Application labels aren't
unique, duplicates: apps
my settings lo
Thank you so much
On Tuesday, December 27, 2016 at 3:55:21 PM UTC+5:30, Rasika wrote:
>
> hello all
> my question is,on my system where all installed apps are located by django.
> If i want to modify those where I can find those like admin app,auth app
> etc.
> and how the aut
work with the source.
This is good approach to understand any framework by looking at its default
code.
Good luck.
Mudassar
On Tue, Dec 27, 2016 at 3:25 AM, Rasika
wrote:
> hello all
> my question is,on my system where all installed apps are located by django.
> If i want to modify th
hello all
my question is,on my system where all installed apps are located by django.
If i want to modify those where I can find those like admin app,auth app
etc.
and how the auth_user table saves the superuser and the user created by
admin for this i have to understand the admin app first
On 17/05/2016 1:42 AM, Asi Dimbez wrote:
Hi,
I'm a newbie, there is thing not clear to me in the tutorial, part 2.Â
I left part 1 with poll app working ok.
In the tutorial, part 2, I read about INSTALLED_APPS :"Â That holds the
names of all Django applications that are activated in this Django
in
Hi,
I'm a newbie, there is thing not clear to me in the tutorial, part 2.
I left part 1 with poll app working ok.
In the tutorial, part 2, I read about INSTALLED_APPS :" That holds the
names of all Django applications that are activated in this Django
instance.."
Now, poll app worked from part 1
Thank you all for the clarification!
On Feb 10, 5:32 pm, "James Bennett" <[EMAIL PROTECTED]> wrote:
> On 2/9/07, voltron <[EMAIL PROTECTED]> wrote:
>
> > what are the advantages of adding the apps to the settings file?
>
> Several things:
>
> * If an app is never listed in INSTALLED_APPS, syncdb
Aha! Thanks for the answers.
--~--~-~--~~~---~--~~
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 [EM
On Feb 10, 8:41 pm, "canen" <[EMAIL PROTECTED]> wrote:
> You don't need INSTALLED_APPS for views, it's more for models if I am
> not mistaken, for example, syncdb won't work if your app is not in
> INSTALLED_APPS.
Yes. Its true
--~--~-~--~~~---~--~~
You received t
You don't need INSTALLED_APPS for views, it's more for models if I am
not mistaken, for example, syncdb won't work if your app is not in
INSTALLED_APPS.
voltron wrote:
> I posted this yesterday, but It did not show up, strange.
>
> According to the manual, one has to add apps to the INSTALLED_APP
On 2/9/07, voltron <[EMAIL PROTECTED]> wrote:
> what are the advantages of adding the apps to the settings file?
Several things:
* If an app is never listed in INSTALLED_APPS, syncdb will never see
it and so will never install DB tables for its models.
* If an app is never listed in INSTALLED_AP
They need to be in INSTALLED_APPS for syncdb to pick up the models
and make any necessary additions to the database.
There may be other uses as well (contrib.admin might use it too, for
example) but I'm not sure.
James
On 09/02/2007, at 11:23 AM, voltron wrote:
>
> Hi all, going bto instal
Hi all, going bto install apps, one must add them to ty the book, the
INSTALLED_APPS tuple setting, I noticed however that one that one can
wire up views and in app directories and they work fine even if not
added to the tuple in the settings file.
My question:
what are the advantages of adding
I posted this yesterday, but It did not show up, strange.
According to the manual, one has to add apps to the INSTALLED_APPS
setting tuple to make the usable in a project. I have created several
test apps with views wired to urls in the projects url conf file, I
was able to call up all urls witho
On 7/31/06, Technofreak <[EMAIL PROTECTED]> wrote:
>
>
> 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
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 b
On 7/31/06, Parthan SR <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Am trying out my first hands with Django and was following the tutorial
> given in the documentation. I have created a project and in the settings.py
> file, as it is said in the tutorial, there is no default install
Hi,
Am trying out my first hands with Django and was following the tutorial
given in the documentation. I have created a project and in the
settings.py file, as it is said in the tutorial, there is no default
installed apps. It is like...
INSTALLED_APPS = (
)
The tutorial says the following
22 matches
Mail list logo