from waitress import serve
from app import app  # make sure 'app' is the Flask instance

serve(app, host="0.0.0.0", port=8080)