fix default port as documented in README

This commit is contained in:
2025-04-01 21:57:23 +02:00
parent 0319a5c7d9
commit 9c2c14b4be

View File

@@ -147,7 +147,7 @@ def main():
"-c", "--config-file", required=True, help="Path to the app's config file (YAML format)"
)
parser.add_argument("--host", default="localhost", help="Hostname of the server")
parser.add_argument("-p", "--port", type=int, default=5000, help="Port of the server")
parser.add_argument("-p", "--port", type=int, default=8000, help="Port of the server")
parser.add_argument(
"-vv",
"--debug",