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
When `ember install ember-cli-deploy` was run, it should have
57
+
generated a a file at `your-app/config/deploy.js`.
39
58
40
59
Edit `config/deploy.js` so that your configuration looks like the snippet below.
41
60
@@ -49,7 +68,61 @@ s3: {},
49
68
}
50
69
```
51
70
52
-
*In depth:* The idea is that `revision-data`, `s3-index` and `index-json` have the same `filePattern` value. `index-json` is not present in this example because we're using its default `filePattern` value.
71
+
_In depth:_ The idea is that `revision-data`, `s3-index` and
72
+
`index-json` have the same `filePattern` value. `index-json` is not
73
+
present in this example because we're using its default `filePattern` value. More on this in the Ember CLI Deploy plugin section.
74
+
75
+
Here is a full example of this file, getting the Amazon S3 information
76
+
from unix environment variables.
77
+
78
+
```js
79
+
/* eslint-env node */
80
+
"use strict";
81
+
82
+
module.exports=function(deployTarget) {
83
+
letENV= {
84
+
s3: {},
85
+
"revision-data": {
86
+
filePattern:"index.json"
87
+
},
88
+
"s3-index": {
89
+
filePattern:"index.json"
90
+
},
91
+
build: {}
92
+
};
93
+
94
+
if (deployTarget ==="development") {
95
+
ENV.build.environment="development";
96
+
// configure other plugins for development deploy target here
97
+
}
98
+
99
+
if (deployTarget ==="staging") {
100
+
ENV.build.environment="production";
101
+
// configure other plugins for staging deploy target here
102
+
}
103
+
104
+
if (deployTarget ==="production") {
105
+
ENV.build.environment="production";
106
+
// configure other plugins for production deploy target here
0 commit comments