wsgi.py 116 B

12345
  1. from app import server
  2. import os
  3. if __name__ == "__main__":
  4. server.run(host=os.environ['HOST'], port=9001)