first commit
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
Urban Modig
2025-04-06 20:27:22 +02:00
parent fa13adce87
commit 9e8e5775a4
4 changed files with 38 additions and 0 deletions

10
app.py Normal file
View File

@ -0,0 +1,10 @@
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "<h1>Hello, Drone CI!</h1>"
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000)