Port 8000

This commit is contained in:
Nicolas Bertrand 2024-11-19 18:29:46 +01:00
parent 61c64d47fd
commit 76b13da56c
1 changed files with 1 additions and 1 deletions

View File

@ -6,6 +6,6 @@ from waitress import serve
def main():
port = os.environ.get('FLASK_RUN_PORT', 80)
port = os.environ.get('FLASK_RUN_PORT', 8000)
print(f'Starting server on port {port}')
serve(app, listen=f'*:{port}')