Skip to content

Commit 51d54a6

Browse files
author
Ben Stahl
committed
Take GCSDataStore out of the initial publish
1 parent 58eed61 commit 51d54a6

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
Not published yet, [coming soon](https://github.com/tus/tus-node-server/milestones/1.0%20NPM%20Publish)!
1111

12-
## Supported Data Stores
12+
## Flexible Data Stores
1313

1414
- Local File Storage
1515
```javascript
@@ -18,7 +18,7 @@ Not published yet, [coming soon](https://github.com/tus/tus-node-server/mileston
1818
});
1919
```
2020

21-
- Google Cloud Storage
21+
- Google Cloud Storage ([_coming soon_](https://github.com/tus/tus-node-server/issues/20))
2222
```javascript
2323
2424
server.datastore = new tus.GCSDataStore({
@@ -30,7 +30,13 @@ Not published yet, [coming soon](https://github.com/tus/tus-node-server/mileston
3030
```
3131

3232
- Amazon S3 ([_coming soon_](https://github.com/tus/tus-node-server/issues/12))
33+
```javascript
3334
35+
server.datastore = new tus.S3Store({
36+
path: '/files',
37+
bucket: 'bucket-name',
38+
});
39+
```
3440

3541
## Quick Start
3642

0 commit comments

Comments
 (0)