Created core app for homepage and generic templates.

pull/1/head
Calum Andrew Morrell 2025-02-16 23:33:27 +00:00
parent 6aec5a5659
commit d665992b22
8 changed files with 11 additions and 0 deletions

View File

@ -39,6 +39,7 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'core.apps.CoreConfig',
'articles.apps.ArticlesConfig',
'markdownx',
]

0
core/__init__.py Normal file
View File

1
core/admin.py Normal file
View File

@ -0,0 +1 @@
# Register your models here.

6
core/apps.py Normal file
View File

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

View File

1
core/models.py Normal file
View File

@ -0,0 +1 @@
# Create your models here.

1
core/tests.py Normal file
View File

@ -0,0 +1 @@
# Create your tests here.

1
core/views.py Normal file
View File

@ -0,0 +1 @@
# Create your views here.