Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
uppy-s3_multipart
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
uppy-s3_multipart
Commits
50889094
Unverified
Commit
50889094
authored
Aug 27, 2018
by
Janko Marohnić
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Link to the walkthrough for regular S3 uploads
parent
ef9554be
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
README.md
README.md
+7
-1
No files found.
README.md
View file @
50889094
...
@@ -96,10 +96,15 @@ Finally, in your Uppy configuration pass your app's URL as the `serverUrl`:
...
@@ -96,10 +96,15 @@ Finally, in your Uppy configuration pass your app's URL as the `serverUrl`:
```
js
```
js
// ...
// ...
uppy
.
use
(
Uppy
.
AwsS3Multipart
,
{
uppy
.
use
(
Uppy
.
AwsS3Multipart
,
{
serverUrl
:
"https://your-app.com/"
,
serverUrl
:
'https://your-app.com/'
,
})
})
```
```
**
See
[
Adding Direct S3 Uploads
]
for an example of a complete Uppy setup with
Shrine. From there you can just swap the
`AwsS3`
Uppy plugin for the
`AwsS3Multipart`
plugin, and
`presign_endpoint`
Shrine plugin for the
`uppy_s3_multipart`
plugin.
**
Both the plugin and method accepts
`:options`
for specifying additional options
Both the plugin and method accepts
`:options`
for specifying additional options
to the aws-sdk calls (read further for more details on these options):
to the aws-sdk calls (read further for more details on these options):
...
@@ -301,6 +306,7 @@ License](https://opensource.org/licenses/MIT).
...
@@ -301,6 +306,7 @@ License](https://opensource.org/licenses/MIT).
[
AwsS3Multipart
]:
https://uppy.io/docs/aws-s3-multipart/
[
AwsS3Multipart
]:
https://uppy.io/docs/aws-s3-multipart/
[
Shrine
]:
https://shrinerb.com
[
Shrine
]:
https://shrinerb.com
[
Adding Direct S3 Uploads
]:
https://github.com/shrinerb/shrine/wiki/Adding-Direct-S3-Uploads
[
`Aws::S3::Client#create_multipart_upload`
]:
https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_multipart_upload-instance_method
[
`Aws::S3::Client#create_multipart_upload`
]:
https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_multipart_upload-instance_method
[
`Aws::S3::Client#list_parts`
]:
https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_parts-instance_method
[
`Aws::S3::Client#list_parts`
]:
https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_parts-instance_method
[
`Aws::S3::Client#upload_part`
]:
https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#upload_part-instance_method
[
`Aws::S3::Client#upload_part`
]:
https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#upload_part-instance_method
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment