[ADD] Module for Atlas
This commit is contained in:
parent
84e3f5c626
commit
35c54097dd
0
atlas/__init__.py
Normal file
0
atlas/__init__.py
Normal file
3
atlas/admin.py
Normal file
3
atlas/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
6
atlas/apps.py
Normal file
6
atlas/apps.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class AtlasConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'atlas'
|
0
atlas/migrations/__init__.py
Normal file
0
atlas/migrations/__init__.py
Normal file
3
atlas/models.py
Normal file
3
atlas/models.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
atlas/tests.py
Normal file
3
atlas/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
atlas/views.py
Normal file
3
atlas/views.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
|
@ -40,6 +40,7 @@ INSTALLED_APPS = [
|
|||
'django.contrib.staticfiles',
|
||||
'admin_extra_buttons',
|
||||
'tldtester.apps.TldtesterConfig',
|
||||
'atlas.apps.AtlasConfig',
|
||||
'tldtest',
|
||||
'compressor',
|
||||
'rest_framework',
|
||||
|
|
Loading…
Reference in a new issue