website: create django app

This commit is contained in:
Oliver Gaskell 2025-11-01 12:07:44 +00:00
parent 1a0a6e0739
commit 1b024d1fd6
No known key found for this signature in database
GPG key ID: F971A08925FCC0AD
15 changed files with 220 additions and 0 deletions

0
websiteapp/__init__.py Normal file
View file

3
websiteapp/admin.py Normal file
View file

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

6
websiteapp/apps.py Normal file
View file

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

View file

3
websiteapp/models.py Normal file
View file

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
websiteapp/tests.py Normal file
View file

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

1
websiteapp/urls.py Normal file
View file

@ -0,0 +1 @@
urlpatterns = []

3
websiteapp/views.py Normal file
View file

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.