# import django´s base Appconfig class from django.apps import AppConfig # configuration class for the 'home' application class HomeConfig(AppConfig): # set the default type of primary key field for models in this app default_auto_field = 'django.db.models.BigAutoField' # give the application a name name = 'home'