add env and clean old apps

add env and clean old apps
This commit is contained in:
jnfire
2022-07-29 10:59:09 +02:00
parent 400d0f1b9c
commit e51406e31a
20 changed files with 177 additions and 132 deletions

View File

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

View File

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

View File

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

View File

@ -1 +0,0 @@
<h1>Hi</h1>

View File

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

View File

@ -1,5 +0,0 @@
from django.shortcuts import render
# Create your views here.
def home(request):
return render(request, 'home.html')