General fixes and updates

New font!
This commit is contained in:
Michał Gdula 2023-09-08 14:08:29 +01:00
parent daecf442e8
commit e1ac27a326
114 changed files with 436 additions and 39 deletions

View file

@ -29,7 +29,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent
SECRET_KEY = getenv("DJANGO_KEY")
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False
DEBUG = True
ALLOWED_HOSTS = ["*"]
@ -87,14 +87,6 @@ WSGI_APPLICATION = "website.wsgi.application"
# https://docs.djangoproject.com/en/4.2/ref/settings/#databases
DATABASES = {
# 'default': {
# 'ENGINE': "django.db.backends.postgresql",
# 'NAME': getenv('POSTGRES_DB'),
# 'USER': getenv('POSTGRES_USER'),
# 'PASSWORD': getenv('POSTGRES_PASSWORD'),
# 'HOST': 'db',
# 'PORT': 5432,
# }
'default': {
'ENGINE': "django.db.backends.sqlite3",
'NAME': BASE_DIR / 'db.sqlite3',