This repository has been archived on 2020-09-28. You can view files and clone it, but cannot push or open issues or pull requests.
AIParking_Engine_deploy2/server.py

7 lines
176 B
Python

from waitress import serve
import app
serve(app.app, host='0.0.0.0', port=8080, threads=6)
# import subprocess
# subprocess.call(['gunicorn', 'app:app', '-b 0.0.0.0:8080'])