We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c49f46 commit cacfe8fCopy full SHA for cacfe8f
1 file changed
app-gradle-plugin/USER_GUIDE.md
@@ -340,3 +340,19 @@ The `deploy` configuration has the following parameters :
340
| `version` | The version of the app that will be created or replaced by this deployment. This also can be set to `GCLOUD_CONFIG` |
341
342
\* setting a property to `GCLOUD_CONFIG` will deploy using the gcloud settings for the property.
343
+
344
+### How do I deploy other files with my application to App Engine?
345
+The `extraFilesDirectories` parameter lets you configure locations on your local drive of files that
346
+will be deployed with your application. See below for an example of how the parameter can be used in
347
+Gradle.
348
349
+```gradle
350
+appengine {
351
+ deploy {
352
+ ...
353
+ }
354
+ stage {
355
+ extraFilesDirectories = "path/to/my/extras"
356
357
+}
358
+```
0 commit comments