From 2a664df30c4fe9ba7f83bb6c8bd6efc34182fe0c Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 20 Oct 2024 16:20:48 +0200 Subject: [PATCH] Fix db bugs --- app.py | 2 +- db.py | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/app.py b/app.py index 220f965..1f3a81c 100644 --- a/app.py +++ b/app.py @@ -20,4 +20,4 @@ def homepage(): return render_template('index.html', endpoints=endpoints) if __name__ == '__main__': - app.run(host='windows.local', port=5000) + app.run(host='0.0.0.0', port=5000) diff --git a/db.py b/db.py index 943652f..325d398 100644 --- a/db.py +++ b/db.py @@ -16,13 +16,18 @@ def init_default_endpoints(): existing_endpoints = {endpoint.id for endpoint in Endpoint.query.all()} default_endpoints = [ - Endpoint(id="1", url="http://windows.local:8100/mystream/"), - Endpoint(id="2", url="http://windows.local:8200/mystream/") + Endpoint(id=1, url="http://windows.local:8100/mystream/"), + Endpoint(id=2, url="http://windows.local:8200/mystream/") ] + updated = False for endpoint in default_endpoints: if endpoint.id not in existing_endpoints: db.session.add(endpoint) + updated = True + + if updated: + db.session.commit() def get_endpoints_from_db(): endpoints = Endpoint.query.all()