move changes into master #41

Merged
corbz merged 29 commits from staging into master 2024-08-14 19:32:19 +00:00
2 changed files with 2 additions and 3 deletions
Showing only changes of commit 13937d02ee - Show all commits

View File

@ -7,4 +7,3 @@ staticfiles/
.bump2version.cfg
.env
.git/
.gitignore

View File

@ -34,8 +34,8 @@ SECRET_KEY = env('SECRET_KEY', default="unsecure-default-secret-key")
DEBUG = env('DEBUG')
# Hosts and Origins that the server host must be within.
ALLOWED_HOSTS = ["localhost", "127.0.0.1", env("HOST", default="127.0.0.1")]
CSRF_TRUSTED_ORIGINS = ["http://localhost", "http://127.0.0.1", "https://" + env("HOST", default="127.0.0.1")]
ALLOWED_HOSTS = ["localhost", "127.0.0.1", "pyrss-website", env("HOST", default="127.0.0.1")]
CSRF_TRUSTED_ORIGINS = ["http://localhost", "http://127.0.0.1", "pyrss-website", "https://" + env("HOST", default="127.0.0.1")]
# Application definition