diff --git a/rrs/__init__.py b/rrs/__init__.py index e69de29..3eab2fe 100644 --- a/rrs/__init__.py +++ b/rrs/__init__.py @@ -0,0 +1,2 @@ + +default_app_config = 'rrs.apps.RecipeReportingSystemConfig' diff --git a/rrs/apps.py b/rrs/apps.py new file mode 100644 index 0000000..ea25060 --- /dev/null +++ b/rrs/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class RecipeReportingSystemConfig(AppConfig): + name = 'rrs' + verbose_name = 'Recipe Reporting System'