Skip to content

Commit

Permalink
feat: Add basic testing flask server
Browse files Browse the repository at this point in the history
  • Loading branch information
selengalp committed Feb 6, 2023
1 parent b74608b commit 85eb5b7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test_server.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 index():
return "Hello World!"


app.run(host="0.0.0.0", port=80, debug=True)

0 comments on commit 85eb5b7

Please sign in to comment.