diff --git a/atlas/__init__.py b/atlas/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/atlas/admin.py b/atlas/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/atlas/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/atlas/apps.py b/atlas/apps.py new file mode 100644 index 0000000..f365394 --- /dev/null +++ b/atlas/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class AtlasConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'atlas' diff --git a/atlas/migrations/__init__.py b/atlas/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/atlas/models.py b/atlas/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/atlas/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/atlas/tests.py b/atlas/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/atlas/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/atlas/views.py b/atlas/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/atlas/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/tldtest/settings.py b/tldtest/settings.py index 9b12d62..8e7007d 100644 --- a/tldtest/settings.py +++ b/tldtest/settings.py @@ -40,6 +40,7 @@ INSTALLED_APPS = [ 'django.contrib.staticfiles', 'admin_extra_buttons', 'tldtester.apps.TldtesterConfig', + 'atlas.apps.AtlasConfig', 'tldtest', 'compressor', 'rest_framework',