You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-2Lines changed: 20 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -135,9 +135,14 @@ PARSE_SERVER_MAX_UPLOAD_SIZE
135
135
136
136
```
137
137
138
-
##### Configuring S3 Adapter
138
+
##### Configuring File Adapters
139
+
Parse Server allows developers to choose from several options when hosting files: the `GridStoreAdapter`, which backed by MongoDB; the `S3Adapter`, which is backed by [Amazon S3](https://aws.amazon.com/s3/); or the `GCSAdapter`, which is backed by [Google Cloud Storage](https://cloud.google.com/storage/).
139
140
140
-
You can use the following environment variable setup the S3 adapter
141
+
`GridStoreAdapter` is used by default and requires no setup, but if you're interested in using S3 or GCS, additional configuration information is available below.
142
+
143
+
###### Configuring `S3Adapter`
144
+
145
+
You can use the following environment variable setup to enable the S3 adapter:
141
146
142
147
```js
143
148
S3_ACCESS_KEY
@@ -149,6 +154,19 @@ S3_DIRECT_ACCESS
149
154
150
155
```
151
156
157
+
###### Configuring `GCSAdapter`
158
+
159
+
You can use the following environment variable setup to enable the GCS adapter:
160
+
161
+
```js
162
+
GCP_PROJECT_ID
163
+
GCP_KEYFILE_PATH
164
+
GCS_BUCKET
165
+
GCS_BUCKET_PREFIX
166
+
GCS_DIRECT_ACCESS
167
+
168
+
```
169
+
152
170
## Contributing
153
171
154
172
We really want Parse to be yours, to see it grow and thrive in the open source community. Please see the [Contributing to Parse Server guide](CONTRIBUTING.md).
0 commit comments