Removed helloworld

This commit is contained in:
2022-06-28 17:01:34 +03:00
parent 8939446636
commit b64b9ec1af
10 changed files with 1 additions and 31 deletions
-1
View File
@@ -32,7 +32,6 @@ ALLOWED_HOSTS = [env('HOST_1')]
# Application definition
INSTALLED_APPS = [
'helloworld',
'faerun_calendar',
'django.contrib.admin',
'django.contrib.auth',
+1 -2
View File
@@ -18,6 +18,5 @@ from django.urls import include, path
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('helloworld.urls')),
path('calendar/', include('faerun_calendar.urls')),
path('', include('faerun_calendar.urls')),
]
View File
-3
View File
@@ -1,3 +0,0 @@
from django.contrib import admin
# Register your models here.
-6
View File
@@ -1,6 +0,0 @@
from django.apps import AppConfig
class HelloworldConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'helloworld'
View File
-3
View File
@@ -1,3 +0,0 @@
from django.db import models
# Create your models here.
-3
View File
@@ -1,3 +0,0 @@
from django.test import TestCase
# Create your tests here.
-8
View File
@@ -1,8 +0,0 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
]
-5
View File
@@ -1,5 +0,0 @@
from django.http import HttpResponse
def index(request):
return HttpResponse('<b>Hallo, Welt!</b>')