Skip to content

Commit 7433ded

Browse files
Update readme
1 parent 9ea82e7 commit 7433ded

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55

66
# FileManager for DevExtreme - Amazon S3 Client-Side Binding
77

8-
This example illustrates how to use the custom file provider to connect the FileManager component to the Amazon Simple Storage Service on the client side. The [Custom File System Provider](https://js.devexpress.com/Documentation/ApiReference/UI_Components/dxFileManager/File_System_Providers/Custom) allows you to implement custom APIs to handle file operations (add, delete, rename, etc.). All APIs that implement access to Amazon S3 on the client are stored in the amazon.file.system.js file (app.service.ts - for Angular framework).
9-
On the Amazon S3, create a bucket, create a user and add permissions to access the created bucket.
8+
This example illustrates how to use the custom file provider to connect the FileManager component to the Amazon Simple Storage Service (S3) on the client side. The [Custom File System Provider](https://js.devexpress.com/Documentation/ApiReference/UI_Components/dxFileManager/File_System_Providers/Custom) allows you to implement custom APIs to handle file operations (add, delete, rename, etc.). All APIs that implement access to Amazon S3 on the client are stored in the amazon.file.system.js file (app.service.ts - for Angular framework).
9+
On the Amazon Simple Storage Service, create a bucket, create a user and add permissions to access the created bucket.
1010

11-
If you run an Angular, React, Vue, or jQuery example, you need to also run a .NET-based backend project - **Amazon_Backend**. To connect this project to an Amazon S3 server, you need to specify Amazon credentials of the user created previously. You need to add `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY` and `AWS_DEFAULT_REGION` environment variables on your local machine or update the `AWS` section in [appsettings.json](Amazon_Backend/appsettings.json):
11+
If you run an Angular, React, Vue, or jQuery example, you need to also run a .NET-based backend project - **Amazon_Backend**. To connect this project to an Amazon S3 server, you need to specify Amazon credentials of the user created previously. You need to update the `AWS` section in [appsettings.json](Amazon_Backend/appsettings.json):
1212

1313
```json
1414
"AWS": {
1515
"AccessKey": "yourAccessKey",
1616
"SecretKey": "yourSecretKey",
17-
"BlobName": "blobName",
18-
"Region": "region"
17+
"Region": "region",
18+
"Bucket": "your bucket name"
1919
},
2020
```
2121

@@ -42,5 +42,6 @@ If you run an Angular, React, Vue, or jQuery example, you need to also run a .NE
4242

4343
## More Examples
4444

45+
- [File Manager for DevExtreme - Direct Upload to Amazon](https://github.com/DevExpress-Examples/devextreme-file-manager-direct-upload-to-amazon)
4546
- [FileManager for DevExtreme - Azure Server-Side Binding](https://github.com/DevExpress-Examples/devextreme-file-manager-azure-server-side-binding)
4647
- [FileUploader for DevExtreme - Direct Upload to Azure](https://github.com/DevExpress-Examples/devextreme-file-uploader-direct-upload-to-azure)

0 commit comments

Comments
 (0)