upgrade react-query to v5

This commit is contained in:
h z
2025-05-09 00:44:53 +01:00
parent 848c4b8fd8
commit 692c0794c5
8 changed files with 52 additions and 51 deletions

4
app.py
View File

@@ -35,7 +35,8 @@ CORS(app, resources={
r"https?://localhost:\d+",
r"https?://127\.0\.0\.1:\d+",
r"https?://localhost"
]
],
"supports_credentials": True
}
},
expose_headers=['Content-Disposition']
@@ -54,5 +55,6 @@ def log_request():
if __name__ == '__main__':
api.init_rate_limits(app)
print("env")
pprint(env_provider.summerize())
app.run(host='0.0.0.0', port=5000, debug=True, use_reloader=True)