xygt/run.py
2024-01-11 21:05:55 +00:00

8 lines
131 B
Python
Executable file

#!/usr/bin/env python3
from app import app
from waitress import serve
if __name__ == '__main__':
serve(app, listen='*:5000')