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