Created app for articles.

pull/1/head
Calum Andrew Morrell 2025-02-16 22:01:41 +00:00
parent e7148362f0
commit bad5592a9c
8 changed files with 11 additions and 0 deletions

0
articles/__init__.py Normal file
View File

1
articles/admin.py Normal file
View File

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

6
articles/apps.py Normal file
View File

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

View File

1
articles/models.py Normal file
View File

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

1
articles/tests.py Normal file
View File

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

1
articles/views.py Normal file
View File

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

View File

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