Files
hello-drone/app.py
Urban Modig 9e8e5775a4
Some checks failed
continuous-integration/drone Build is failing
first commit
2025-04-06 20:27:22 +02:00

11 lines
183 B
Python

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)