examples/storage/resumable-upload-signed-uppy/README.md
This example shows how to use signed urls from Supabase Storage with Uppy to upload files to Supabase Storage using the TUS protocol (signed resumable uploads).
This works by calling createSignedUploadUrl() to get a token for each file, and passing that token via the x-signature header when uploading the files
supabase startSUPABASE_PUBLISHABLE_KEY to the value output when starting the supabase cli# python http server
python3 -m http.server
# npm http-server
npx http-server
In index.html the uppy.on('file-added') hook calls the create-upload-token function which creates a token for each added file and attaches it to that file's header config as x-signature.