Spaces:
Sleeping
Sleeping
File size: 268 Bytes
34f203c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from qnabackend import create_app
app = create_app()
@app.route('/')
def home():
return "hello world"
if __name__ == '__main__':
app.run(debug = True, port = 5000)
# if __name__ == '__main__':
# app.run(debug = False, host = "0.0.0.0", port = 7860)
|