Implement a native chunked resumable upload API and frontend integration to support reliable large file uploads. Changes include: - Added a 3-step resumable upload API flow (create session, upload chunks, complete session). - Introduced configuration options for chunk size, retention hours, and toggling the feature. - Updated the frontend to utilize resumable uploads with progress tracking. - Configured temporary chunk storage under `data/tmp/uploads` with automatic cleanup. - Documented the API flow and configuration in the README.
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
WARPBOX_APP_NAME=warpbox.dev
|
|
WARPBOX_ENV=development
|
|
WARPBOX_ADDR=:8080
|
|
WARPBOX_BASE_URL=http://localhost:8080
|
|
WARPBOX_DATA_DIR=./data
|
|
WARPBOX_ADMIN_TOKEN=change-me
|
|
WARPBOX_JOBS_ENABLED=true
|
|
WARPBOX_CLEANUP_ENABLED=true
|
|
WARPBOX_CLEANUP_EVERY=1h
|
|
WARPBOX_THUMBNAIL_ENABLED=true
|
|
WARPBOX_THUMBNAIL_EVERY=1m
|
|
WARPBOX_RESUMABLE_UPLOADS_ENABLED=true
|
|
WARPBOX_RESUMABLE_CHUNK_MB=16
|
|
WARPBOX_RESUMABLE_RETENTION_HOURS=1
|
|
WARPBOX_MAX_UPLOAD_SIZE_MB=16384
|
|
WARPBOX_ANONYMOUS_UPLOADS_ENABLED=true
|
|
WARPBOX_ANONYMOUS_MAX_UPLOAD_MB=512
|
|
WARPBOX_ANONYMOUS_DAILY_UPLOAD_MB=2048
|
|
WARPBOX_USER_DAILY_UPLOAD_MB=8192
|
|
WARPBOX_DEFAULT_USER_STORAGE_MB=51200
|
|
WARPBOX_USAGE_RETENTION_DAYS=30
|
|
WARPBOX_LOCAL_STORAGE_MAX_GB=100
|
|
WARPBOX_ANONYMOUS_MAX_DAYS=30
|
|
WARPBOX_USER_MAX_DAYS=90
|
|
WARPBOX_ANONYMOUS_DAILY_BOXES=100
|
|
WARPBOX_USER_DAILY_BOXES=250
|
|
WARPBOX_ANONYMOUS_ACTIVE_BOXES=500
|
|
WARPBOX_USER_ACTIVE_BOXES=1000
|
|
WARPBOX_SHORT_WINDOW_REQUESTS=60
|
|
WARPBOX_SHORT_WINDOW_SECONDS=60
|
|
WARPBOX_ANONYMOUS_STORAGE_BACKEND=local
|
|
WARPBOX_USER_STORAGE_BACKEND=local
|
|
WARPBOX_READ_HEADER_TIMEOUT=15s
|
|
WARPBOX_READ_TIMEOUT=0s
|
|
WARPBOX_WRITE_TIMEOUT=0s
|
|
WARPBOX_IDLE_TIMEOUT=120s
|
|
WARPBOX_TRUSTED_PROXIES=
|