Skip to content

Commit

Permalink
Create mydemoapp.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Lean3Viljoen94 authored Jul 24, 2020
0 parents commit 95ca710
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions mydemoapp.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from flask import Flask

app = Flask(__name__)

@app.route("/")
def hello():
return "Hello! This is a basic Flask app. "

if __name__ == "__main__":
app.run("0.0.0.0")

0 comments on commit 95ca710

Please sign in to comment.