Update app.py

This commit is contained in:
Joshua Hare 2025-06-04 19:34:22 +10:00 committed by GitHub
parent 4d712b64f2
commit df79ad312e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

4
app.py
View File

@ -71,7 +71,7 @@ def create_app():
}, },
"host": "localhost:5001", "host": "localhost:5001",
"basePath": "/oauth2", "basePath": "/oauth2",
"schemes": ["https"] "schemes": ["http"]
} }
swagger_config = { swagger_config = {
"specs": [ "specs": [
@ -602,4 +602,4 @@ def create_app():
if __name__ == '__main__': if __name__ == '__main__':
app = create_app() app = create_app()
app.run(debug=True, port=5001) app.run(debug=True, port=5001)