fdroid-repomaker/repomaker/settings.py

256 lines
7.5 KiB
Python

"""
Django settings for repomaker project.
For more information on this file, see
https://docs.djangoproject.com/en/dev/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/dev/ref/settings/
"""
import logging
import os
from django.conf import global_settings
from django.utils.translation import ugettext_lazy
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Where user data such as repositories will be stored
DATA_DIR = os.path.join(BASE_DIR, 'data')
SINGLE_USER_MODE = True
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/dev/howto/deployment/checklist/
# SECURITY WARNING: change this secret key and keep it secret!
# Changing this in production invalidates all default repo URLs
SECRET_KEY = '913d6#u8@-*#3l)spwzurd#fd77bey-6mfs5fc$a=yhnh!n4p9'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
logging.getLogger().setLevel(logging.DEBUG)
# Add your host here
ALLOWED_HOSTS = ['127.0.0.1']
# Location for media accessible via the web-server such as repo icons, screenshots, etc.
MEDIA_ROOT = os.path.join(DATA_DIR, 'media')
MEDIA_URL = "/media/"
# Location for private data such as the repo signing key
PRIVATE_REPO_ROOT = os.path.join(DATA_DIR, 'private_repo')
# Uncomment the next line to show this notice on every page
# SITE_NOTICE = '''Maintenance ongoing. Please check back later.'''
# Database
# https://docs.djangoproject.com/en/dev/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(DATA_DIR, 'db.sqlite3'),
}
}
# Uncomment and edit this, if you want to offer your users storage for their repositories
# You need to configure your web-server to serve from those locations
# DEFAULT_REPO_STORAGE = [
# (os.path.join(DATA_DIR, 'repos'), '/repos/'),
# ('/var/repomaker/repos', 'https://repos.example.org/'),
# ]
# Application definition
INSTALLED_APPS = [
'repomaker.apps.RepoMakerConfig',
'compressor',
'sass_processor',
'background_task',
'modeltranslation', # model i18n
'tinymce',
'django_js_reverse',
'django.forms',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.humanize',
'django.contrib.sites',
'allauth.account',
]
SITE_ID = 1
if not SINGLE_USER_MODE:
LOGIN_REDIRECT_URL = "/"
# http://django-allauth.readthedocs.io/en/latest/installation.html
INSTALLED_APPS += [
'allauth',
'allauth.socialaccount',
# 'allauth.socialaccount.providers.amazon',
# 'allauth.socialaccount.providers.baidu',
# 'allauth.socialaccount.providers.bitbucket_oauth2',
# 'allauth.socialaccount.providers.dropbox_oauth2',
# 'allauth.socialaccount.providers.facebook',
# 'allauth.socialaccount.providers.github',
# 'allauth.socialaccount.providers.gitlab',
# 'allauth.socialaccount.providers.google',
# 'allauth.socialaccount.providers.linkedin_oauth2',
'allauth.socialaccount.providers.openid',
# 'allauth.socialaccount.providers.reddit',
# 'allauth.socialaccount.providers.slack',
# 'allauth.socialaccount.providers.stackexchange',
# 'allauth.socialaccount.providers.twitter',
# 'allauth.socialaccount.providers.weibo',
]
AUTHENTICATION_BACKENDS = (
'django.contrib.auth.backends.ModelBackend',
'allauth.account.auth_backends.AuthenticationBackend',
)
ACCOUNT_FORMS = {
'login': 'repomaker.views.RmLoginForm',
'reset_password': 'repomaker.views.RmResetPasswordForm',
'signup': 'repomaker.views.RmSignupForm',
}
ACCOUNT_EMAIL_VERIFICATION = "none"
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.locale.LocaleMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'repomaker.urls'
# URLs to be exluded by JavaScript URL handler
JS_REVERSE_EXCLUDE_NAMESPACES = [
'accounts',
'admin',
'jsreverse',
'tinymce',
]
JS_REVERSE_JS_MINIFY = not DEBUG
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'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',
],
},
},
]
FORM_RENDERER = 'django.forms.renderers.TemplatesSetting'
WSGI_APPLICATION = 'repomaker.wsgi.application'
# Password validation
# https://docs.djangoproject.com/en/dev/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',
},
]
if not DEBUG:
CSRF_COOKIE_SECURE = True
SESSION_COOKIE_SECURE = True
# Background Tasks
# http://django-background-tasks.readthedocs.io/en/latest/
MAX_ATTEMPTS = 23 # the number of attempts for marking a task as permanently failed
# Internationalization
# https://docs.djangoproject.com/en/dev/topics/i18n/
LANGUAGE_CODE = 'en'
LANGUAGES = [('en-us', ugettext_lazy('American English'))] + global_settings.LANGUAGES
# defaults to the value of LANGUAGES
# for the unit tests to pass, this list need to include at least:
# en, en-us, de, and de-de
MODELTRANSLATION_LANGUAGES = ('en-us', 'en', 'de-de', 'de', 'fr', 'zh-cn')
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
LOCALE_PATHS = (
os.path.join(BASE_DIR, 'repomaker', 'locale'),
)
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/dev/howto/static-files/
STATIC_ROOT = os.path.join(BASE_DIR, 'repomaker-static')
STATIC_URL = '/static/'
NODE_MODULES_ROOT = os.path.join(BASE_DIR, 'node_modules')
NODE_MODULES_URL = STATIC_URL + 'node_modules/'
STATICFILES_DIRS = [
('node_modules', NODE_MODULES_ROOT),
]
STATICFILES_FINDERS = [
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'sass_processor.finders.CssFinder',
'compressor.finders.CompressorFinder',
]
SASS_PROCESSOR_INCLUDE_DIRS = [
NODE_MODULES_ROOT,
]
COMPRESS_ENABLED = True
COMPRESS_OUTPUT_DIR = 'compressed'
TINYMCE_JS_URL = os.path.join(NODE_MODULES_URL, "tinymce/tinymce.min.js")
TINYMCE_DEFAULT_CONFIG = {
'theme': 'modern',
'menubar': False,
'toolbar': 'undo redo | bold italic | link',
'plugins': 'autolink link lists',
'browser_spellcheck': True,
'statusbar': False,
'height': 'auto',
'resize': True,
'branding': False,
}