dm/python/wsgi.py

5 lines
143 B
Python
Executable File

from app import app
import os
if __name__ == "__main__":
app.run(host='0.0.0.0', port=os.environ.get("FLASK_SERVER_PORT"), debug=True)