Compare commits

2 Commits

Author SHA1 Message Date
094d7bed13 update homepage version to 2.2.0 2025-10-23 18:54:05 +02:00
8d4f899184 delete insecure option 2025-10-23 18:53:29 +02:00
3 changed files with 160 additions and 161 deletions

View File

@@ -134,7 +134,7 @@ ckeditor -> django-prose-editor
## Version History ## Version History
Next 2.2.0
* Add rental * Add rental

View File

@@ -10,7 +10,6 @@ python manage.py migrate
# Start server # Start server
echo "Starting server" echo "Starting server"
# TODO: FIX insecure!!! python manage.py runserver 0.0.0.0:8000
python manage.py runserver --insecure 0.0.0.0:8000
exec "$@" exec "$@"

View File

@@ -1,6 +1,6 @@
from django.utils.version import get_version from django.utils.version import get_version
VERSION = (1, 0, 0, "final", 0) VERSION = (2, 2, 0, "final", 0)
BUILD = 0 BUILD = 0
__version__ = get_version(VERSION) __version__ = get_version(VERSION)