Makefile and agent start.
This commit is contained in:
10
manager/app.py
Normal file
10
manager/app.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from flask import Flask, jsonify
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route('/status/healthcheck')
|
||||
def healthcheck():
|
||||
return jsonify({"status": "ok"})
|
||||
|
||||
if __name__ == '__main__':
|
||||
app.run(host='0.0.0.0', port=5086)
|
||||
Reference in New Issue
Block a user