diff --git a/contentcuration/automation/__init__.py b/contentcuration/automation/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/contentcuration/automation/admin.py b/contentcuration/automation/admin.py new file mode 100644 index 0000000000..4185d360e9 --- /dev/null +++ b/contentcuration/automation/admin.py @@ -0,0 +1,3 @@ +# from django.contrib import admin + +# Register your models here. diff --git a/contentcuration/automation/apps.py b/contentcuration/automation/apps.py new file mode 100644 index 0000000000..eaa1d3d4e1 --- /dev/null +++ b/contentcuration/automation/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class AutomationConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'automation' diff --git a/contentcuration/automation/migrations/__init__.py b/contentcuration/automation/migrations/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/contentcuration/automation/models.py b/contentcuration/automation/models.py new file mode 100644 index 0000000000..0b4331b362 --- /dev/null +++ b/contentcuration/automation/models.py @@ -0,0 +1,3 @@ +# from django.db import models + +# Create your models here. diff --git a/contentcuration/automation/tests.py b/contentcuration/automation/tests.py new file mode 100644 index 0000000000..a79ca8be56 --- /dev/null +++ b/contentcuration/automation/tests.py @@ -0,0 +1,3 @@ +# from django.test import TestCase + +# Create your tests here. diff --git a/contentcuration/automation/views.py b/contentcuration/automation/views.py new file mode 100644 index 0000000000..fd0e044955 --- /dev/null +++ b/contentcuration/automation/views.py @@ -0,0 +1,3 @@ +# from django.shortcuts import render + +# Create your views here. diff --git a/contentcuration/contentcuration/dev_settings.py b/contentcuration/contentcuration/dev_settings.py index d81d23a993..439bdef8af 100644 --- a/contentcuration/contentcuration/dev_settings.py +++ b/contentcuration/contentcuration/dev_settings.py @@ -5,4 +5,4 @@ ROOT_URLCONF = "contentcuration.dev_urls" -INSTALLED_APPS += ("drf_yasg",) +INSTALLED_APPS += ("drf_yasg", "automation")