[ADD] Module for Atlas

This commit is contained in:
Arnold Dechamps 2024-06-01 23:20:18 +02:00
parent 84e3f5c626
commit 35c54097dd
No known key found for this signature in database
GPG key ID: AE66543374E41C89
8 changed files with 19 additions and 0 deletions

0
atlas/__init__.py Normal file
View file

3
atlas/admin.py Normal file
View file

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

6
atlas/apps.py Normal file
View file

@ -0,0 +1,6 @@
from django.apps import AppConfig
class AtlasConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'atlas'

View file

3
atlas/models.py Normal file
View file

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
atlas/tests.py Normal file
View file

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
atlas/views.py Normal file
View file

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.

View file

@ -40,6 +40,7 @@ INSTALLED_APPS = [
'django.contrib.staticfiles',
'admin_extra_buttons',
'tldtester.apps.TldtesterConfig',
'atlas.apps.AtlasConfig',
'tldtest',
'compressor',
'rest_framework',