10 lines
334 B
Python
10 lines
334 B
Python
# 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'
|