fix(backend): listen on all ips
Some checks failed
Publish docker image / Publish (push) Failing after 1m6s

This commit is contained in:
Ashhhleyyy 2024-02-18 13:44:24 +00:00
parent 4b8bb59bf3
commit a93de55191
Signed by: ash
GPG key ID: 83B789081A0878FB

View file

@ -61,4 +61,4 @@ def current_codes(db: sqlite3.Cursor=Depends(get_db)):
if __name__ == '__main__':
run_migrations()
uvicorn.run(app)
uvicorn.run(app, host='0.0.0.0')