Datenmodell funktioniert und Verwaltung über Admin-Ansicht, service angelegt.

This commit is contained in:
2026-07-28 01:44:02 +02:00
parent 6a6de6882b
commit c62c593b1c
9 changed files with 262 additions and 40 deletions
+4
View File
@@ -0,0 +1,4 @@
#!/bin/bash
# Löscht alle compilierten Python-Zwischendateien im Projekt
find . -type d -name __pycache__ -exec rm -r {} +
find . -name "*.pyc" -delete