fix: Update LICENSES_FILE path in backup, verify, and run scripts; enhance JWT configuration and security headers in main.py

This commit is contained in:
Maximilian G.
2026-03-23 11:22:59 +00:00
committed by GitHub
parent 38642f7e61
commit c043f280b4
6 changed files with 63 additions and 13 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import os
import json
from pathlib import Path
LICENSES_FILE = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "licenses.json"))
LICENSES_FILE = os.path.abspath(os.path.join(os.path.dirname(__file__),"licenses.json"))
def load_licenses() -> dict: