I created \'frontend\' application using ./manage.py startproject frontend
\'frontend\'
./manage.py startproject frontend
But for some reason I just want to change the app name in the Dj
apps.py
from django.apps import AppConfig class FrontendConfig(AppConfig): name = 'frontend' verbose_name = "Your Home Page"
__ init__.py
default_app_config = 'frontend.apps.FrontendConfig'
https://docs.djangoproject.com/en/2.2/ref/applications/