Skip to content

Commit 507d51f

Browse files
gianpajflovilmart
authored andcommitted
Fix typo in code example and add link for instructions to generate GCS keyfile (#483)
1 parent 844697d commit 507d51f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

_includes/parse-server/file-adapters.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ new S3Adapter(accessKey, secretKey, bucket, options)
114114

115115
Unlike the S3 adapter, you must create a new Cloud Storage bucket, as this is not created automatically. See the Google Cloud guide on [Authentication](https://googlecloudplatform.github.io/google-cloud-node/#/docs/google-cloud/master/guides/authentication) for more details.
116116

117+
To generate a private key in the Cloud Platform Console follow [these instructions](https://cloud.google.com/storage/docs/authentication#generating-a-private-key).
118+
117119
### Installation
118120

119121
Starting 2.2.6, GCS Adapter is not provided by default by parse-server. To install run:
@@ -145,7 +147,7 @@ If you're using Node.js/Express:
145147

146148
```javascript
147149
...
148-
var GCSAdapter = require('parse-server-gcs-adatper');
150+
var GCSAdapter = require('parse-server-gcs-adapter');
149151

150152
var api = new ParseServer({
151153
databaseURI: databaseUri || 'mongodb://localhost:27017/dev',

0 commit comments

Comments
 (0)