From 35c54097dda83c674bea856dcb4a9ecd32734819 Mon Sep 17 00:00:00 2001 From: altf4arnold Date: Sat, 1 Jun 2024 23:20:18 +0200 Subject: [PATCH] =?UTF-8?q?[ADD]=C2=A0Module=20for=20Atlas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- atlas/__init__.py | 0 atlas/admin.py | 3 +++ atlas/apps.py | 6 ++++++ atlas/migrations/__init__.py | 0 atlas/models.py | 3 +++ atlas/tests.py | 3 +++ atlas/views.py | 3 +++ tldtest/settings.py | 1 + 8 files changed, 19 insertions(+) create mode 100644 atlas/__init__.py create mode 100644 atlas/admin.py create mode 100644 atlas/apps.py create mode 100644 atlas/migrations/__init__.py create mode 100644 atlas/models.py create mode 100644 atlas/tests.py create mode 100644 atlas/views.py 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',