diff --git a/qs2csv/asgi.py b/qs2csv/asgi.py deleted file mode 100644 index 85e9ddc..0000000 --- a/qs2csv/asgi.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -ASGI config for qs2csv project. - -It exposes the ASGI callable as a module-level variable named ``application``. - -For more information on this file, see -https://docs.djangoproject.com/en/3.2/howto/deployment/asgi/ -""" - -import os - -from django.core.asgi import get_asgi_application - -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "qs2csv.settings") - -application = get_asgi_application() diff --git a/qs2csv/urls.py b/qs2csv/urls.py deleted file mode 100644 index a6312d4..0000000 --- a/qs2csv/urls.py +++ /dev/null @@ -1,22 +0,0 @@ -"""qs2csv URL Configuration - -The `urlpatterns` list routes URLs to views. For more information please see: - https://docs.djangoproject.com/en/3.2/topics/http/urls/ -Examples: -Function views - 1. Add an import: from my_app import views - 2. Add a URL to urlpatterns: path('', views.home, name='home') -Class-based views - 1. Add an import: from other_app.views import Home - 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') -Including another URLconf - 1. Import the include() function: from django.urls import include, path - 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) -""" - -from django.contrib import admin -from django.urls import path - -urlpatterns = [ - path("admin/", admin.site.urls), -] diff --git a/qs2csv/wsgi.py b/qs2csv/wsgi.py deleted file mode 100644 index 06bb48e..0000000 --- a/qs2csv/wsgi.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -WSGI config for qs2csv project. - -It exposes the WSGI callable as a module-level variable named ``application``. - -For more information on this file, see -https://docs.djangoproject.com/en/3.2/howto/deployment/wsgi/ -""" - -import os - -from django.core.wsgi import get_wsgi_application - -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "qs2csv.settings") - -application = get_wsgi_application()