"""Runs the server""" from serve import app import controllers if __name__ == '__main__': app.run(debug=True, host='localhost', port=8080)
from serve import app if __name__ == "__main__": app.run()
from serve import app if __name__ == "__main__": app.run(debug=True)
from serve import app as application if __name__ == "__main__": application.run()
from serve import app if __name__ == '__main__': app.run(host="0.0.0.0",port=80)
"""Runs the server""" import controllers from serve import app if __name__ == '__main__': app.run(debug=True, host='0.0.0.0', port=8000)
from serve import app as application if __name__ == "__main__": application.run('0.0.0.0')