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