7 lines
176 B
Python
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'])
|