mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-21 22:34:21 +00:00
✨ Create first "core" app
This commit is contained in:
parent
c92d090371
commit
99080ee927
7 changed files with 17 additions and 0 deletions
0
sophon/core/__init__.py
Normal file
0
sophon/core/__init__.py
Normal file
3
sophon/core/admin.py
Normal file
3
sophon/core/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
sophon/core/apps.py
Normal file
5
sophon/core/apps.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class CoreConfig(AppConfig):
|
||||
name = 'core'
|
0
sophon/core/migrations/__init__.py
Normal file
0
sophon/core/migrations/__init__.py
Normal file
3
sophon/core/models.py
Normal file
3
sophon/core/models.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
sophon/core/tests.py
Normal file
3
sophon/core/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
sophon/core/views.py
Normal file
3
sophon/core/views.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
Loading…
Reference in a new issue