There was an error while loading. Please reload this page.
1 parent 1ec1080 commit 508ce7fCopy full SHA for 508ce7f
src/app.py
@@ -8,4 +8,9 @@
8
9
@app.route('/')
10
def hello_world():
11
- return 'How about trying a ' + content[randint(0,3)] + ' next'
+ return 'How about trying a ' + content[randint(0, 3)] + ' next'
12
+
13
14
+if __name__ == '__main__':
15
+ # Make the server publicly available by default
16
+ app.run(debug=True, host='0.0.0.0')
0 commit comments