firewall Frontend Improvements

This commit is contained in:
Domingo Dirutigliano
2023-09-24 17:05:55 +02:00
parent 4247dc181d
commit 594e6b4e00
10 changed files with 389 additions and 26 deletions

View File

@@ -15,7 +15,7 @@ ON_DOCKER = len(sys.argv) > 1 and sys.argv[1] == "DOCKER"
DEBUG = len(sys.argv) > 1 and sys.argv[1] == "DEBUG"
FIREGEX_PORT = int(os.getenv("PORT","4444"))
JWT_ALGORITHM: str = "HS256"
API_VERSION = "2.0.0"
API_VERSION = "2.2.0"
PortType = Annotated[int, Path(gt=0, lt=65536)]