Made upload path dynamic.

This commit is contained in:
retoor 2024-11-26 06:30:47 +01:00
parent 254cb6004b
commit 2f6ecfe06d

View File

@ -287,11 +287,12 @@ def create_app(
max_file_size=max_file_size, max_file_size=max_file_size,
upload_folder_quota=upload_folder_quota, upload_folder_quota=upload_folder_quota,
) )
pathlib.Path(upload_path).mkdir(parents=True, exist_ok=True
app.add_routes( app.add_routes(
[ [
web.get("/", handle_index), web.get("/", handle_index),
web.post("/upload", handle_upload), web.post("/upload", handle_upload),
web.static("/uploads", "uploads"), web.static("/uploads", upload_path),
] ]
) )
return app return app