feat: links defined by environment variables

This commit is contained in:
ahoemann 2025-03-20 18:08:08 +01:00
parent 6750c17306
commit 77508a984e
5 changed files with 7 additions and 6 deletions

2
app.py
View file

@ -18,7 +18,7 @@ def about():
@app.route("/")
def homepage():
return render_template("homepage.j2")
return render_template("homepage.j2", MONITORING_URL = os.environ['MONITORING_URL'], GIT_URL = os.environ['GIT_URL'])
if __name__ == "__main__":