test1/app.py
Vladislav 2e497c64b3
Some checks failed
CI Pipeline / lint (push) Failing after 14s
CI Pipeline / test (push) Successful in 7s
CI Pipeline / build (push) Has been skipped
test pipeline 4
2025-05-22 23:19:25 +03:00

11 lines
172 B
Python

from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello():
return 'Hello, DevOps!'
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000)