Jenkins/app.py
2023-12-07 10:58:18 +01:00

12 lines
193 B
Python

from flask import Flask
app = Flask(__name__)
@app.route("/")
def helloworld():
return "Helle from the hell"
if __name__ == "__main__":
app.run(debug=True,host="0.0.0.0",port=5000)