-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Garrett Coakley <[email protected]>
- Loading branch information
0 parents
commit 15015fa
Showing
8,530 changed files
with
1,216,126 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Logs | ||
/htdocs/stats | ||
/logs | ||
|
||
# Misc | ||
*.swp | ||
*.pyc | ||
.DS_Store | ||
/.coverage | ||
/dist/ | ||
/build/ | ||
/MANIFEST | ||
/wagtail.egg-info/ | ||
/docs/_build/ | ||
/.tox/ | ||
/venv | ||
/node_modules/ | ||
npm-debug.log* | ||
*.idea/ | ||
/*.egg/ | ||
/.cache/ | ||
/.pytest_cache/ | ||
|
||
# vscode | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Use an official Python runtime as a parent image | ||
FROM python:3.7 | ||
LABEL maintainer="[email protected]" | ||
|
||
# Set environment varibles | ||
ENV PYTHONUNBUFFERED 1 | ||
ENV DJANGO_ENV dev | ||
|
||
COPY ./requirements.txt /code/requirements.txt | ||
RUN pip install --upgrade pip | ||
# Install any needed packages specified in requirements.txt | ||
RUN pip install -r /code/requirements.txt | ||
RUN pip install gunicorn | ||
|
||
# Copy the current directory contents into the container at /code/ | ||
COPY . /code/ | ||
# Set the working directory to /code/ | ||
WORKDIR /code/ | ||
|
||
RUN python manage.py migrate | ||
|
||
RUN useradd wagtail | ||
RUN chown -R wagtail /code | ||
USER wagtail | ||
|
||
EXPOSE 8000 | ||
CMD exec gunicorn digitaloxford.wsgi:application --bind 0.0.0.0:8000 --workers 3 |
Binary file not shown.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,163 @@ | ||
""" | ||
Django settings for digitaloxford project. | ||
Generated by 'django-admin startproject' using Django 2.2.9. | ||
For more information on this file, see | ||
https://docs.djangoproject.com/en/2.2/topics/settings/ | ||
For the full list of settings and their values, see | ||
https://docs.djangoproject.com/en/2.2/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/2.2/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 = 'digitaloxford.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 = 'digitaloxford.wsgi.application' | ||
|
||
|
||
# Database | ||
# https://docs.djangoproject.com/en/2.2/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/2.2/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/2.2/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/2.2/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/2.2/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 = "digitaloxford" | ||
|
||
# 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' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 = 'ql9-z7b=56uk@*gd)6&(%m27k$n&037%02-v+%vxhq0a%20)2=' | ||
|
||
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from .base import * | ||
|
||
DEBUG = False | ||
|
||
try: | ||
from .local import * | ||
except ImportError: | ||
pass |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block body_class %}template-404{% endblock %} | ||
|
||
{% block content %} | ||
<h1>Page not found</h1> | ||
|
||
<h2>Sorry, this page could not be found.</h2> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html class="no-js"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Internal server error</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
</head> | ||
<body> | ||
<h1>Internal server error</h1> | ||
|
||
<h2>Sorry, there seems to be an error. Please try again soon.</h2> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{% load static wagtailuserbar %} | ||
|
||
<!DOCTYPE html> | ||
<html class="no-js" lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title> | ||
{% 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 %} | ||
</title> | ||
<meta name="description" content="" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
|
||
{# Global stylesheets #} | ||
<link rel="stylesheet" type="text/css" href="{% static 'css/digitaloxford.css' %}"> | ||
|
||
{% block extra_css %} | ||
{# Override this in templates to add extra stylesheets #} | ||
{% endblock %} | ||
</head> | ||
|
||
<body class="{% block body_class %}{% endblock %}"> | ||
{% wagtailuserbar %} | ||
|
||
{% block content %}{% endblock %} | ||
|
||
{# Global javascript #} | ||
<script type="text/javascript" src="{% static 'js/digitaloxford.js' %}"></script> | ||
|
||
{% block extra_js %} | ||
{# Override this in templates to add extra javascript #} | ||
{% endblock %} | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
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'), | ||
|
||
# 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)), | ||
] | ||
|
||
|
||
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
""" | ||
WSGI config for digitaloxford 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/2.2/howto/deployment/wsgi/ | ||
""" | ||
|
||
import os | ||
|
||
from django.core.wsgi import get_wsgi_application | ||
|
||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "digitaloxford.settings.dev") | ||
|
||
application = get_wsgi_application() |
Oops, something went wrong.