Fix db bugs

This commit is contained in:
Santiago Lo Coco 2024-10-20 16:20:48 +02:00
parent 7f52d4e2a8
commit 2a664df30c
2 changed files with 8 additions and 3 deletions

2
app.py
View File

@ -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)

9
db.py
View File

@ -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()