automated terminal push

This commit is contained in:
lenape
2025-07-12 08:51:48 +00:00
parent 751acfe646
commit 0282e18140
10 changed files with 361 additions and 0 deletions

10
app.py Normal file
View File

@@ -0,0 +1,10 @@
from flask import Flask, jsonify
app = Flask(__name__)
@app.route('/health')
def health():
return jsonify(status='OK')
if __name__ == '__main__':
app.run(host='0.0.0.0', port=8080)