From 4872b099ccd2ddd4e6baa31b7a2b3cf391237a7a Mon Sep 17 00:00:00 2001 From: Jonathan DeMasi Date: Mon, 2 Mar 2020 15:31:38 -0700 Subject: init wagtail --- jthanio/__init__.py | 0 jthanio/settings/__init__.py | 0 jthanio/settings/base.py | 163 +++++++++++++++++++++++++++++++++++++++++ jthanio/settings/dev.py | 18 +++++ jthanio/settings/production.py | 8 ++ jthanio/static/css/jthanio.css | 0 jthanio/static/js/jthanio.js | 0 jthanio/templates/404.html | 9 +++ jthanio/templates/500.html | 13 ++++ jthanio/templates/base.html | 40 ++++++++++ jthanio/urls.py | 39 ++++++++++ jthanio/wsgi.py | 16 ++++ 12 files changed, 306 insertions(+) create mode 100644 jthanio/__init__.py create mode 100644 jthanio/settings/__init__.py create mode 100644 jthanio/settings/base.py create mode 100644 jthanio/settings/dev.py create mode 100644 jthanio/settings/production.py create mode 100644 jthanio/static/css/jthanio.css create mode 100644 jthanio/static/js/jthanio.js create mode 100644 jthanio/templates/404.html create mode 100644 jthanio/templates/500.html create mode 100644 jthanio/templates/base.html create mode 100644 jthanio/urls.py create mode 100644 jthanio/wsgi.py (limited to 'jthanio') diff --git a/jthanio/__init__.py b/jthanio/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/jthanio/settings/__init__.py b/jthanio/settings/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/jthanio/settings/base.py b/jthanio/settings/base.py new file mode 100644 index 0000000..494f905 --- /dev/null +++ b/jthanio/settings/base.py @@ -0,0 +1,163 @@ +""" +Django settings for jthanio project. + +Generated by 'django-admin startproject' using Django 3.0.3. + +For more information on this file, see +https://docs.djangoproject.com/en/3.0/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/3.0/ref/settings/ +""" + +# Build paths inside the project like this: os.path.join(BASE_DIR, ...) +import os + +PROJECT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +BASE_DIR = os.path.dirname(PROJECT_DIR) + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/ + + +# Application definition + +INSTALLED_APPS = [ + 'home', + 'search', + + 'wagtail.contrib.forms', + 'wagtail.contrib.redirects', + 'wagtail.embeds', + 'wagtail.sites', + 'wagtail.users', + 'wagtail.snippets', + 'wagtail.documents', + 'wagtail.images', + 'wagtail.search', + 'wagtail.admin', + 'wagtail.core', + + 'modelcluster', + 'taggit', + + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', +] + +MIDDLEWARE = [ + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', + 'django.middleware.security.SecurityMiddleware', + + 'wagtail.core.middleware.SiteMiddleware', + 'wagtail.contrib.redirects.middleware.RedirectMiddleware', +] + +ROOT_URLCONF = 'jthanio.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [ + os.path.join(PROJECT_DIR, 'templates'), + ], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'jthanio.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/3.0/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), + } +} + + +# Password validation +# https://docs.djangoproject.com/en/3.0/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/3.0/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_L10N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/3.0/howto/static-files/ + +STATICFILES_FINDERS = [ + 'django.contrib.staticfiles.finders.FileSystemFinder', + 'django.contrib.staticfiles.finders.AppDirectoriesFinder', +] + +STATICFILES_DIRS = [ + os.path.join(PROJECT_DIR, 'static'), +] + +# ManifestStaticFilesStorage is recommended in production, to prevent outdated +# Javascript / CSS assets being served from cache (e.g. after a Wagtail upgrade). +# See https://docs.djangoproject.com/en/3.0/ref/contrib/staticfiles/#manifeststaticfilesstorage +STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.ManifestStaticFilesStorage' + +STATIC_ROOT = os.path.join(BASE_DIR, 'static') +STATIC_URL = '/static/' + +MEDIA_ROOT = os.path.join(BASE_DIR, 'media') +MEDIA_URL = '/media/' + + +# Wagtail settings + +WAGTAIL_SITE_NAME = "jthanio" + +# Base URL to use when referring to full URLs within the Wagtail admin backend - +# e.g. in notification emails. Don't include '/admin' or a trailing slash +BASE_URL = 'http://example.com' diff --git a/jthanio/settings/dev.py b/jthanio/settings/dev.py new file mode 100644 index 0000000..14d9ee4 --- /dev/null +++ b/jthanio/settings/dev.py @@ -0,0 +1,18 @@ +from .base import * + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'hwq)dss*tg_p#ryuqvr)d*hk3785$13r=#kffh++1-de_5za!y' + +# SECURITY WARNING: define the correct hosts in production! +ALLOWED_HOSTS = ['*'] + +EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' + + +try: + from .local import * +except ImportError: + pass diff --git a/jthanio/settings/production.py b/jthanio/settings/production.py new file mode 100644 index 0000000..9ca4ed7 --- /dev/null +++ b/jthanio/settings/production.py @@ -0,0 +1,8 @@ +from .base import * + +DEBUG = False + +try: + from .local import * +except ImportError: + pass diff --git a/jthanio/static/css/jthanio.css b/jthanio/static/css/jthanio.css new file mode 100644 index 0000000..e69de29 diff --git a/jthanio/static/js/jthanio.js b/jthanio/static/js/jthanio.js new file mode 100644 index 0000000..e69de29 diff --git a/jthanio/templates/404.html b/jthanio/templates/404.html new file mode 100644 index 0000000..3a5500e --- /dev/null +++ b/jthanio/templates/404.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} + +{% block body_class %}template-404{% endblock %} + +{% block content %} +

Page not found

+ +

Sorry, this page could not be found.

+{% endblock %} diff --git a/jthanio/templates/500.html b/jthanio/templates/500.html new file mode 100644 index 0000000..72b6406 --- /dev/null +++ b/jthanio/templates/500.html @@ -0,0 +1,13 @@ + + + + + Internal server error + + + +

Internal server error

+ +

Sorry, there seems to be an error. Please try again soon.

+ + diff --git a/jthanio/templates/base.html b/jthanio/templates/base.html new file mode 100644 index 0000000..82a3fe8 --- /dev/null +++ b/jthanio/templates/base.html @@ -0,0 +1,40 @@ +{% load static wagtailuserbar %} + + + + + + + {% block title %} + {% if self.seo_title %}{{ self.seo_title }}{% else %}{{ self.title }}{% endif %} + {% endblock %} + {% block title_suffix %} + {% with self.get_site.site_name as site_name %} + {% if site_name %}- {{ site_name }}{% endif %} + {% endwith %} + {% endblock %} + + + + + {# Global stylesheets #} + + + {% block extra_css %} + {# Override this in templates to add extra stylesheets #} + {% endblock %} + + + + {% wagtailuserbar %} + + {% block content %}{% endblock %} + + {# Global javascript #} + + + {% block extra_js %} + {# Override this in templates to add extra javascript #} + {% endblock %} + + diff --git a/jthanio/urls.py b/jthanio/urls.py new file mode 100644 index 0000000..89cfde3 --- /dev/null +++ b/jthanio/urls.py @@ -0,0 +1,39 @@ +from django.conf import settings +from django.conf.urls import include, url +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 = [ + url(r'^django-admin/', admin.site.urls), + + url(r'^admin/', include(wagtailadmin_urls)), + url(r'^documents/', include(wagtaildocs_urls)), + + url(r'^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: + url(r"", include(wagtail_urls)), + + # Alternatively, if you want Wagtail pages to be served from a subpath + # of your site, rather than the site root: + # url(r"^pages/", include(wagtail_urls)), +] diff --git a/jthanio/wsgi.py b/jthanio/wsgi.py new file mode 100644 index 0000000..8d50879 --- /dev/null +++ b/jthanio/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for jthanio 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", "jthanio.settings.dev") + +application = get_wsgi_application() -- cgit v1.2.3