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
5 matches
Mail list logo