WMDE
/
eva
forked from tohe/eva
7
1
Fork 0
eva/home/apps.py

10 lines
334 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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'