django3 compatibility and links in comments
This commit is contained in:
parent
40fe3eb583
commit
56fff08ebb
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -19,3 +19,6 @@
|
|||||||
[submodule "media"]
|
[submodule "media"]
|
||||||
path = media
|
path = media
|
||||||
url = https://git.mount-mockery.de/pylib/media.git
|
url = https://git.mount-mockery.de/pylib/media.git
|
||||||
|
[submodule "stringtools"]
|
||||||
|
path = stringtools
|
||||||
|
url = https://git.mount-mockery.de/pylib/stringtools
|
||||||
|
16
main/asgi.py
Normal file
16
main/asgi.py
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
"""
|
||||||
|
ASGI config for main 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.0/howto/deployment/asgi/
|
||||||
|
"""
|
||||||
|
|
||||||
|
import os
|
||||||
|
|
||||||
|
from django.core.asgi import get_asgi_application
|
||||||
|
|
||||||
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'main.settings')
|
||||||
|
|
||||||
|
application = get_asgi_application()
|
@ -1,13 +1,13 @@
|
|||||||
"""
|
"""
|
||||||
Django settings for this project.
|
Django settings for this project.
|
||||||
|
|
||||||
Generated by 'django-admin startproject' using Django 2.2.3.
|
Generated by 'django-admin startproject' using Django 3.0.3.
|
||||||
|
|
||||||
For more information on this file, see
|
For more information on this file, see
|
||||||
https://docs.djangoproject.com/en/2.2/topics/settings/
|
https://docs.djangoproject.com/en/3.0/topics/settings/
|
||||||
|
|
||||||
For the full list of settings and their values, see
|
For the full list of settings and their values, see
|
||||||
https://docs.djangoproject.com/en/2.2/ref/settings/
|
https://docs.djangoproject.com/en/3.0/ref/settings/
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import config
|
import config
|
||||||
@ -56,7 +56,7 @@ for property_name in USER_CONFIG_DEFAULTS:
|
|||||||
setattr(thismodule, property_name, value)
|
setattr(thismodule, property_name, value)
|
||||||
|
|
||||||
# Quick-start development settings - unsuitable for production
|
# Quick-start development settings - unsuitable for production
|
||||||
# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/
|
# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
|
||||||
|
|
||||||
# SECURITY WARNING: keep the secret key used in production secret!
|
# SECURITY WARNING: keep the secret key used in production secret!
|
||||||
#
|
#
|
||||||
@ -68,7 +68,7 @@ if SECRET_KEY is None:
|
|||||||
|
|
||||||
# SECURITY WARNING: don't run with debug turned on in production!
|
# SECURITY WARNING: don't run with debug turned on in production!
|
||||||
#
|
#
|
||||||
DEBUG = False
|
DEBUG = True
|
||||||
|
|
||||||
|
|
||||||
# Application definition
|
# Application definition
|
||||||
@ -120,7 +120,7 @@ WSGI_APPLICATION = 'main.wsgi.application'
|
|||||||
|
|
||||||
|
|
||||||
# Database
|
# Database
|
||||||
# https://docs.djangoproject.com/en/2.2/ref/settings/#databases
|
# https://docs.djangoproject.com/en/3.0/ref/settings/#databases
|
||||||
#
|
#
|
||||||
DATABASES = {
|
DATABASES = {
|
||||||
'default': {
|
'default': {
|
||||||
@ -131,7 +131,7 @@ DATABASES = {
|
|||||||
|
|
||||||
|
|
||||||
# Password validation
|
# Password validation
|
||||||
# https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators
|
# https://docs.djangoproject.com/en/3.0/ref/settings/#auth-password-validators
|
||||||
#
|
#
|
||||||
AUTH_PASSWORD_VALIDATORS = [
|
AUTH_PASSWORD_VALIDATORS = [
|
||||||
{
|
{
|
||||||
@ -155,7 +155,7 @@ WHOOSH_PATH = os.path.join(BASE_DIR, 'data', 'whoosh_index')
|
|||||||
|
|
||||||
|
|
||||||
# Internationalization
|
# Internationalization
|
||||||
# https://docs.djangoproject.com/en/2.2/topics/i18n/
|
# https://docs.djangoproject.com/en/3.0/topics/i18n/
|
||||||
#
|
#
|
||||||
LANGUAGE_CODE = 'en-us'
|
LANGUAGE_CODE = 'en-us'
|
||||||
LANGUAGES = [
|
LANGUAGES = [
|
||||||
@ -178,7 +178,7 @@ USE_TZ = True
|
|||||||
|
|
||||||
|
|
||||||
# Static files (CSS, JavaScript, Images)
|
# Static files (CSS, JavaScript, Images)
|
||||||
# https://docs.djangoproject.com/en/2.2/howto/static-files/
|
# https://docs.djangoproject.com/en/3.0/howto/static-files/
|
||||||
#
|
#
|
||||||
STATIC_ROOT = os.path.join(BASE_DIR, 'data', 'static')
|
STATIC_ROOT = os.path.join(BASE_DIR, 'data', 'static')
|
||||||
STATIC_URL = '/static/'
|
STATIC_URL = '/static/'
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
"""Project URL Configuration
|
"""Project URL Configuration
|
||||||
|
|
||||||
The `urlpatterns` list routes URLs to views. For more information please see:
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
||||||
https://docs.djangoproject.com/en/2.2/topics/http/urls/
|
https://docs.djangoproject.com/en/3.0/topics/http/urls/
|
||||||
Examples:
|
Examples:
|
||||||
Function views
|
Function views
|
||||||
1. Add an import: from my_app import views
|
1. Add an import: from my_app import views
|
||||||
|
@ -4,7 +4,7 @@ WSGI config for this project.
|
|||||||
It exposes the WSGI callable as a module-level variable named ``application``.
|
It exposes the WSGI callable as a module-level variable named ``application``.
|
||||||
|
|
||||||
For more information on this file, see
|
For more information on this file, see
|
||||||
https://docs.djangoproject.com/en/2.2/howto/deployment/wsgi/
|
https://docs.djangoproject.com/en/3.0/howto/deployment/wsgi/
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
Django>=2.0.5,<3.0
|
Django>=2.0.5
|
||||||
Pillow>=5.4.1
|
Pillow>=5.4.1
|
||||||
python-creole>=1.0.0
|
python-creole>=1.0.0
|
||||||
Whoosh>=2.4.0
|
Whoosh>=2.4.0
|
||||||
|
1
stringtools
Submodule
1
stringtools
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit a12e00bb8152af3863370d1c9b3fcadc8ddae31a
|
2
themes
2
themes
@ -1 +1 @@
|
|||||||
Subproject commit a24e772083b27e9ab413d137005dbc9e8325dbc4
|
Subproject commit b0106a3d5cc302844dacc681f75f047876525e5e
|
Loading…
x
Reference in New Issue
Block a user