mirror of
https://github.com/th3r00t/pyShelf.git
synced 2026-04-28 01:59:35 -04:00
143 lines
3.8 KiB
Python
Executable File
143 lines
3.8 KiB
Python
Executable File
"""
|
|
Django settings for frontend project.
|
|
|
|
Generated by 'django-admin startproject' using Django 2.2.7.
|
|
|
|
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/
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
from backend.lib.config import Config
|
|
|
|
CUR_DIR = Path.cwd()
|
|
PRG_DIR = CUR_DIR.parts[0:-1]
|
|
PRG_DIR = Path(*PRG_DIR)
|
|
|
|
|
|
CONFIG = Config(PRG_DIR)
|
|
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
SECRET_KEY = CONFIG.SECRET
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG = TEMPLATE_DEBUG = False
|
|
if DEBUG is True:
|
|
from pudb.remote import set_trace
|
|
ALLOWED_HOSTS = CONFIG.allowed_hosts
|
|
|
|
|
|
# Application definition
|
|
|
|
INSTALLED_APPS = [
|
|
"django.contrib.admin",
|
|
"django.contrib.auth",
|
|
"django.contrib.contenttypes",
|
|
"django.contrib.sessions",
|
|
"django.contrib.messages",
|
|
"django.contrib.staticfiles",
|
|
"interface",
|
|
"interface.templatetags",
|
|
"debug_toolbar",
|
|
"widget_tweaks"
|
|
]
|
|
AUTH_USER_MODEL = "interface.User"
|
|
MIDDLEWARE = [
|
|
"django.middleware.security.SecurityMiddleware",
|
|
"django.contrib.sessions.middleware.SessionMiddleware",
|
|
"django.middleware.common.CommonMiddleware",
|
|
"django.middleware.csrf.CsrfViewMiddleware",
|
|
"debug_toolbar.middleware.DebugToolbarMiddleware",
|
|
"django.contrib.auth.middleware.AuthenticationMiddleware",
|
|
"django.contrib.messages.middleware.MessageMiddleware",
|
|
"django.middleware.clickjacking.XFrameOptionsMiddleware",
|
|
]
|
|
|
|
INTERNAL_IPS = [
|
|
# ...
|
|
"127.0.0.1",
|
|
# ...
|
|
]
|
|
|
|
ROOT_URLCONF = "frontend.urls"
|
|
|
|
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",
|
|
],
|
|
},
|
|
},
|
|
]
|
|
|
|
WSGI_APPLICATION = "frontend.wsgi.application"
|
|
|
|
|
|
# Database
|
|
# https://docs.djangoproject.com/en/2.2/ref/settings/#databases
|
|
DATABASES = {
|
|
"default": {
|
|
"ENGINE": "django.db.backends.postgresql",
|
|
"NAME": CONFIG.catalogue_db,
|
|
"USER": "pyshelf",
|
|
"PASSWORD": CONFIG.password,
|
|
"HOST": CONFIG.db_host,
|
|
"PORT": CONFIG.db_port,
|
|
}
|
|
}
|
|
# Session
|
|
# Uncomment below to enable sessions management by a memcache server
|
|
# https://docs.djangoproject.com/en/3.0/topics/http/sessions/
|
|
# SESSION_ENGINE = "django.contrib.sessions.backends.cached_db"
|
|
|
|
# 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/
|
|
LOGIN_REDIRECT_URL = 'home'
|
|
STATIC_URL = "/static/"
|
|
STATIC_ROOT = os.path.join(BASE_DIR, "interface/static/")
|