PLEASE HELP ME KNOW HOW TO ARRANGE INSTALLED APPS.

66 views
Skip to first unread message

regan opere

unread,
Oct 18, 2022, 5:16:38 AM10/18/22
to Django users
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 look like this
INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
   
    'apps.core.apps',
   
    'apps.store.apps',


and their individual apps.py look like this:

class CoreConfig(AppConfig):
    default_auto_field = 'django.db.models.BigAutoField'
    name = 'core'
 

and 

class StoreConfig(AppConfig):
    default_auto_field = 'django.db.models.BigAutoField'
    name = 'store'
  


without the second app 'store" the server runs just fine

subin

unread,
Oct 18, 2022, 5:15:48 PM10/18/22
to django...@googlegroups.com
Please let me know if that is acceptable with you.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/fab8949f-1012-4fad-8259-b63c67195f69n%40googlegroups.com.

Chukwudi Onwusa

unread,
Oct 18, 2022, 11:17:55 PM10/18/22
to django...@googlegroups.com
Lets take App Directory name tiles.
So inthe installed app list it will be

'tiles.apps.TilesConfig',
Or put simply
'tiles',
Hope it helps .


--

regan opere

unread,
Oct 19, 2022, 5:29:26 AM10/19/22
to Django users
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.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: apps

however, when I delete one of the apps from the settings, the server runs without an error

subin

unread,
Oct 19, 2022, 5:48:50 AM10/19/22
to django...@googlegroups.com
Thank you for your feedback regarding statuam.gov.

johnpaul mulongo

unread,
Oct 19, 2022, 12:40:58 PM10/19/22
to django...@googlegroups.com
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',
]



Ammar Mohammed

unread,
Oct 29, 2022, 5:39:19 PM10/29/22
to 'Rahul Chauhan' via Django users
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 

Reply all
Reply to author
Forward
0 new messages