File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed
inventory_project/settings Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -166,6 +166,8 @@ To make a new release, do this:
166166
167167[ comment ] : < > ( ✂✂✂ auto generated history start ✂✂✂ )
168168
169+ * [ ** dev** ] ( https://github.com/jedie/PyInventory/compare/v0.21.1...main )
170+ * 2025-05-01 - Fix local dev server: Don't enforce https
169171* [ v0.21.1] ( https://github.com/jedie/PyInventory/compare/v0.21.0...v0.21.1 )
170172 * 2025-05-01 - Replace setuptools with hatchling
171173 * 2025-04-30 - Update requirements and some small code parts
@@ -174,14 +176,14 @@ To make a new release, do this:
174176 * 2025-03-23 - Migrate "pip-tools" -> "uv" and remove tox
175177* [ v0.20.1] ( https://github.com/jedie/PyInventory/compare/v0.20.0...v0.20.1 )
176178 * 2024-09-05 - switched to https://github.com/jazzband/django-tinymce/
179+
180+ <details ><summary >Expand older history entries ...</summary >
181+
177182* [ v0.20.0] ( https://github.com/jedie/PyInventory/compare/v0.19.3...v0.20.0 )
178183 * 2024-09-05 - Replace django-ckeditor with django-prose-editor and fix tests
179184 * 2024-09-05 - Project updates
180185 * 2024-01-16 - Use typeguard in tests
181186 * 2024-01-16 - Update requirements
182-
183- <details ><summary >Expand older history entries ...</summary >
184-
185187* [ v0.19.3] ( https://github.com/jedie/PyInventory/compare/v0.19.2...v0.19.3 )
186188 * 2023-11-01 - Auto generate README history
187189 * 2023-11-01 - Update requirements
Original file line number Diff line number Diff line change 1313# SECURITY WARNING: don't run with debug turned on in production!
1414DEBUG = True
1515
16+ # Disable secure settings from prod.py:
17+ CSRF_COOKIE_SECURE = False
18+ SESSION_COOKIE_SECURE = False
19+ SECURE_PROXY_SSL_HEADER = None
20+ SECURE_SSL_REDIRECT = False
21+ SECURE_HSTS_PRELOAD = False
1622
1723# Serve static/media files for local development:
1824SERVE_FILES = True
You can’t perform that action at this time.
0 commit comments