fix: app - expose on 0.0.0.0

This commit is contained in:
Swapnil 2024-01-24 19:11:56 +05:30
parent c377909954
commit 1d1c2aac9f
Signed by: swapnil
GPG Key ID: 58029C48BB100574
1 changed files with 1 additions and 1 deletions

View File

@ -91,4 +91,4 @@ def save_tokens(access_token, refresh_token, expiration_seconds):
response.raise_for_status()
if __name__ == '__main__':
app.run(debug=True, port=5000)
app.run(host='0.0.0.0', debug=True, port=5000)