Fix db bugs
This commit is contained in:
parent
7f52d4e2a8
commit
2a664df30c
2
app.py
2
app.py
|
@ -20,4 +20,4 @@ def homepage():
|
||||||
return render_template('index.html', endpoints=endpoints)
|
return render_template('index.html', endpoints=endpoints)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
app.run(host='windows.local', port=5000)
|
app.run(host='0.0.0.0', port=5000)
|
||||||
|
|
9
db.py
9
db.py
|
@ -16,13 +16,18 @@ def init_default_endpoints():
|
||||||
existing_endpoints = {endpoint.id for endpoint in Endpoint.query.all()}
|
existing_endpoints = {endpoint.id for endpoint in Endpoint.query.all()}
|
||||||
|
|
||||||
default_endpoints = [
|
default_endpoints = [
|
||||||
Endpoint(id="1", url="http://windows.local:8100/mystream/"),
|
Endpoint(id=1, url="http://windows.local:8100/mystream/"),
|
||||||
Endpoint(id="2", url="http://windows.local:8200/mystream/")
|
Endpoint(id=2, url="http://windows.local:8200/mystream/")
|
||||||
]
|
]
|
||||||
|
|
||||||
|
updated = False
|
||||||
for endpoint in default_endpoints:
|
for endpoint in default_endpoints:
|
||||||
if endpoint.id not in existing_endpoints:
|
if endpoint.id not in existing_endpoints:
|
||||||
db.session.add(endpoint)
|
db.session.add(endpoint)
|
||||||
|
updated = True
|
||||||
|
|
||||||
|
if updated:
|
||||||
|
db.session.commit()
|
||||||
|
|
||||||
def get_endpoints_from_db():
|
def get_endpoints_from_db():
|
||||||
endpoints = Endpoint.query.all()
|
endpoints = Endpoint.query.all()
|
||||||
|
|
Loading…
Reference in New Issue