From 08885cab15407477a4ab32f6cc49f9599c60b55c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patol=C3=A1n?= Date: Wed, 14 Oct 2020 09:21:26 +0000 Subject: [PATCH] =?UTF-8?q?Nahr=C3=A1t=20soubory=20do=20=E2=80=9E=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __init__.py | Bin 0 -> 1024 bytes models.py | 7 +++++++ urls.py | 39 +++++++++++++++++++++++++++++++++++++++ wsgi.py | 16 ++++++++++++++++ 4 files changed, 62 insertions(+) create mode 100644 __init__.py create mode 100644 models.py create mode 100644 urls.py create mode 100644 wsgi.py diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..06d7405020018ddf3cacee90fd4af10487da3d20 GIT binary patch literal 1024 ScmZQz7zLvtFd70QH3R?z00031 literal 0 HcmV?d00001 diff --git a/models.py b/models.py new file mode 100644 index 0000000..e8a0942 --- /dev/null +++ b/models.py @@ -0,0 +1,7 @@ +from django.db import models + +from wagtail.core.models import Page + + +class HomePage(Page): + pass diff --git a/urls.py b/urls.py new file mode 100644 index 0000000..2a0c4bc --- /dev/null +++ b/urls.py @@ -0,0 +1,39 @@ +from django.conf import settings +from django.urls import include, path +from django.contrib import admin + +from wagtail.admin import urls as wagtailadmin_urls +from wagtail.core import urls as wagtail_urls +from wagtail.documents import urls as wagtaildocs_urls + +from search import views as search_views + +urlpatterns = [ + path('django-admin/', admin.site.urls), + + path('admin/', include(wagtailadmin_urls)), + path('documents/', include(wagtaildocs_urls)), + + path('search/', search_views.search, name='search'), + +] + + +if settings.DEBUG: + from django.conf.urls.static import static + from django.contrib.staticfiles.urls import staticfiles_urlpatterns + + # Serve static and media files from development server + urlpatterns += staticfiles_urlpatterns() + urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) + +urlpatterns = urlpatterns + [ + # For anything not caught by a more specific rule above, hand over to + # Wagtail's page serving mechanism. This should be the last pattern in + # the list: + path("", include(wagtail_urls)), + + # Alternatively, if you want Wagtail pages to be served from a subpath + # of your site, rather than the site root: + # path("pages/", include(wagtail_urls)), +] diff --git a/wsgi.py b/wsgi.py new file mode 100644 index 0000000..b5d14e7 --- /dev/null +++ b/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for blog 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.0/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "blog.settings.dev") + +application = get_wsgi_application()