Skip to content

Commit

Permalink
Add Flask hello world
Browse files Browse the repository at this point in the history
  • Loading branch information
ErnstHaagsman committed Dec 11, 2017
1 parent 097c7b1 commit 5bc6144
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions server.py
@@ -0,0 +1,11 @@
from flask import Flask
app = Flask(__name__)


@app.route("/")
def hello():
return "Hello World!"


if __name__ == '__main__':
app.run(host='0.0.0.0', debug=True)

0 comments on commit 5bc6144

Please sign in to comment.