From 99080ee927fd98e8882274b019f1413adda18cc1 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 5 Apr 2021 01:07:49 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Create=20first=20"core"=20app?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sophon/core/__init__.py | 0 sophon/core/admin.py | 3 +++ sophon/core/apps.py | 5 +++++ sophon/core/migrations/__init__.py | 0 sophon/core/models.py | 3 +++ sophon/core/tests.py | 3 +++ sophon/core/views.py | 3 +++ 7 files changed, 17 insertions(+) create mode 100644 sophon/core/__init__.py create mode 100644 sophon/core/admin.py create mode 100644 sophon/core/apps.py create mode 100644 sophon/core/migrations/__init__.py create mode 100644 sophon/core/models.py create mode 100644 sophon/core/tests.py create mode 100644 sophon/core/views.py diff --git a/sophon/core/__init__.py b/sophon/core/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/sophon/core/admin.py b/sophon/core/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/sophon/core/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/sophon/core/apps.py b/sophon/core/apps.py new file mode 100644 index 0000000..26f78a8 --- /dev/null +++ b/sophon/core/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class CoreConfig(AppConfig): + name = 'core' diff --git a/sophon/core/migrations/__init__.py b/sophon/core/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/sophon/core/models.py b/sophon/core/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/sophon/core/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/sophon/core/tests.py b/sophon/core/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/sophon/core/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/sophon/core/views.py b/sophon/core/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/sophon/core/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.