Go to file
2024-09-07 16:47:38 +00:00
bin update all deps 2024-05-31 09:39:53 +02:00
etc/os-brick/rootwrap.d Website basic setup 2023-06-29 23:45:04 +02:00
homepage add captcha to contact, add status pages 2023-11-08 15:04:13 +01:00
include/site/python3.11/greenlet Website basic setup 2023-06-29 23:45:04 +02:00
lib/python3.11/site-packages update all deps 2024-05-31 09:39:53 +02:00
news minor aestetic improvements 2023-11-30 02:54:36 +01:00
share/man/man1 Website basic setup 2023-06-29 23:45:04 +02:00
static add captcha to contact, add status pages 2023-11-08 15:04:13 +01:00
templates updates to address and copyright 2024-05-14 19:16:23 +02:00
.gitignore Initial django state and .gitignore 2023-05-20 23:52:51 +02:00
lib64 added pip venv 2023-05-21 00:55:42 +02:00
LICENSE Initial commit 2023-05-20 23:50:27 +02:00
manage.py Initial django state and .gitignore 2023-05-20 23:52:51 +02:00
pyvenv.cfg dependency update through venv reinstall 2023-11-07 21:44:55 +01:00
README.md further mods to readme usability 2023-11-08 16:15:28 +01:00
renovate.json5 chore(deps): add renovate.json5 2024-05-18 00:06:25 +00:00
requirements.txt chore(deps): update dependency platformdirs to v4.3.1 2024-09-07 16:47:38 +00:00

homepage-django

Installation instructions

In this repository __pycache__ and homepage/settings.py have not been added to git.

  1. create a venv in the local directory: python3 -m venv .
  2. install requirements: python3 -m pip install -r requirements.txt
  3. paste settings.py, replace credentials (possibly also install pymemcached, postgres and a mail server, though this is out of scope here) --> Your Django install should be working at this point
  4. add reverse proxy (I recommend apache)
  5. add tls certificate. --> At this point you should have a fully functioning install

The following is a working settings.py file, just paste it in and add your credentials in the SECRET_KEY, EMAIL, DATABASES and CACHES section:

"""
Django settings for homepage project.

Generated by 'django-admin startproject' using Django 4.2.1.

For more information on this file, see
https://docs.djangoproject.com/en/4.2/topics/settings/

For the full list of settings and their values, see
https://docs.djangoproject.com/en/4.2/ref/settings/
"""

from pathlib import Path

# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/4.2/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'REPLACE'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

ALLOWED_HOSTS = ["testbench.denkena-consulting.com"]

EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = ''
EMAIL_HOST_USER = ''
EMAIL_HOST_PASSWORD = ''
EMAIL_PORT = 587
EMAIL_USE_TLS = True
DEFAULT_FROM_EMAIL = ""

# Application definition

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'news',
    'captcha',
    ]

MIDDLEWARE = [
    'django.middleware.security.SecurityMiddleware',
    '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',
    'whitenoise.middleware.WhiteNoiseMiddleware',
]

ROOT_URLCONF = 'homepage.urls'

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [
            BASE_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 = 'homepage.wsgi.application'


# Database
# https://docs.djangoproject.com/en/4.2/ref/settings/#databases

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql',
        'NAME': '',
        'USER': '',
        'PASSWORD': '',
        'HOST': '',
        'PORT': '',
    }
}

CACHES = {
        "default": {
            "BACKEND":
            "django.core.cache.backends.memcached.PyMemcacheCache",
            "LOCALTION": "",
            "TIMEOUT": 33,
            }
        }

# Password validation
# https://docs.djangoproject.com/en/4.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/4.2/topics/i18n/

LANGUAGE_CODE = 'en-us'

TIME_ZONE = 'UTC'

USE_I18N = True

USE_TZ = True

STATIC_ROOT = BASE_DIR / 'static/'
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/4.2/howto/static-files/

STATIC_URL = 'static/'
# Default primary key field type
# https://docs.djangoproject.com/en/4.2/ref/settings/#default-auto-field

DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'