Removed helloworld
This commit is contained in:
@@ -32,7 +32,6 @@ ALLOWED_HOSTS = [env('HOST_1')]
|
||||
# Application definition
|
||||
|
||||
INSTALLED_APPS = [
|
||||
'helloworld',
|
||||
'faerun_calendar',
|
||||
'django.contrib.admin',
|
||||
'django.contrib.auth',
|
||||
|
||||
+1
-2
@@ -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')),
|
||||
]
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
@@ -1,6 +0,0 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class HelloworldConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'helloworld'
|
||||
@@ -1,3 +0,0 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
@@ -1,3 +0,0 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
||||
@@ -1,8 +0,0 @@
|
||||
from django.urls import path
|
||||
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.index, name='index'),
|
||||
]
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
from django.http import HttpResponse
|
||||
|
||||
def index(request):
|
||||
return HttpResponse('<b>Hallo, Welt!</b>')
|
||||
|
||||
Reference in New Issue
Block a user