Skip to content

Commit ef56e9a

Browse files
Hugo VieilledentGreatWizard
Hugo Vieilledent
authored andcommitted
docs: add more installation instructions
1 parent ef7fa7a commit ef56e9a

File tree

1 file changed

+100
-15
lines changed

1 file changed

+100
-15
lines changed

README.md

+100-15
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ $ cat tmp/deploy-dist/index.json
1111
"assets/dummy.css": "assets/dummy-d41d8cd98f00b204e9800998ecf8427e.css",
1212
"assets/dummy.js": "assets/dummy-f1caa4785f44f7dc0ca9118458c120f8.js",
1313
"assets/vendor.js": "assets/vendor-b3a3b580d0c1bf83382792291e35020b.js",
14-
"assets/vendor.css": "assets/vendor-d41d8cd98f00b204e9800998ecf8427e.css",
15-
"crossdomain.xml": "crossdomain.xml",
16-
"robots.txt": "robots.txt"
14+
"assets/vendor.css": "assets/vendor-d41d8cd98f00b204e9800998ecf8427e.css"
1715
}
1816
```
1917

@@ -25,17 +23,38 @@ For more information on what plugins are and how they work, please refer to the
2523

2624
## Setup
2725

28-
- Requirements
26+
### Requirements
2927

30-
You'll first have to [setup `ember-cli-deploy-s3-index`](https://github.com/ember-cli-deploy/ember-cli-deploy-s3-index#quick-start).
28+
You'll first have to install and configure:
3129

32-
- Install this plugin
30+
- [`ember-cli-deploy`](https://github.com/ember-cli-deploy/ember-cli-deploy)
31+
- [`ember-cli-deploy-s3`](https://github.com/ember-cli-deploy/ember-cli-deploy-s3#quick-start)
32+
- [`ember-cli-deploy-s3-index`](https://github.com/ember-cli-deploy/ember-cli-deploy-s3-index#quick-start)
33+
- [`ember-cli-deploy-build`](https://github.com/ember-cli-deploy/ember-cli-deploy-build)
34+
- [`ember-cli-deploy-revision-data`](https://github.com/ember-cli-deploy/ember-cli-deploy-revision-data)
35+
- [`ember-cli-deploy-display-revisions`](https://github.com/duizendnegen/ember-cli-deploy-display-revisions)
36+
37+
You can do this like so:
38+
39+
```shell
40+
ember install ember-cli-deploy
41+
ember install ember-cli-deploy-s3
42+
ember install ember-cli-deploy-s3-index
43+
ember install ember-cli-deploy-build
44+
ember install ember-cli-deploy-revision-data
45+
ember install ember-cli-deploy-display-revisions
46+
```
47+
48+
### Install this plugin
3349

3450
```bash
3551
$ ember install ember-cli-deploy-index-json
3652
```
3753

38-
- Configuration
54+
### Configuration
55+
56+
When `ember install ember-cli-deploy` was run, it should have
57+
generated a a file at `your-app/config/deploy.js`.
3958

4059
Edit `config/deploy.js` so that your configuration looks like the snippet below.
4160

@@ -49,7 +68,61 @@ s3: {},
4968
}
5069
```
5170

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+
let ENV = {
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
107+
let s3Config = {
108+
allowOverwrite: process.env.ALLOW_OVERWRITE === "true" ? true : false,
109+
signatureVersion: "v4",
110+
accessKeyId: process.env.AWS_ACCESS_KEY_ID,
111+
secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY,
112+
bucket: process.env.S3_BUCKET_URI,
113+
region: process.env.S3_REGION
114+
};
115+
116+
Object.assign(ENV.s3, s3Config);
117+
Object.assign(ENV["s3-index"], s3Config);
118+
}
119+
120+
// Note: if you need to build some configuration asynchronously, you can return
121+
// a promise that resolves with the ENV object instead of returning the
122+
// ENV object synchronously.
123+
return ENV;
124+
};
125+
```
53126

54127
## Usage
55128

@@ -75,43 +148,55 @@ For detailed information on what plugin hooks are and how they work, please refe
75148

76149
For detailed information on how configuration of plugins works, please refer to the [Plugin Documentation][1].
77150

151+
You have to edit `config/deploy.js` so that your configuration looks like the snippet below:
152+
153+
```js
154+
'index-json': {
155+
filePattern: '...',
156+
fileIgnorePattern: '...',
157+
indexPath: '...',
158+
distDir: '...',
159+
distFiles: []
160+
}
161+
```
162+
78163
### filePattern
79164

80165
Files matching this pattern will be included in the index.
81166

82-
*Default:* `'**/*.{js,css,png,gif,ico,jpg,map,xml,txt,svg,swf,eot,ttf,woff,woff2}'`
167+
_Default:_ `'**/*.{js,css,png,gif,ico,jpg,map,xml,txt,svg,swf,eot,ttf,woff,woff2}'`
83168

84169
### fileIgnorePattern
85170

86-
Files matching this pattern will *not* be included in the index even if they match filePattern.
171+
Files matching this pattern will _not_ be included in the index even if they match filePattern.
87172

88-
*Default:* `null`
173+
_Default:_ `null`
89174

90175
### indexPath
91176

92177
The JSON index file name. If changed, you should adapt `revision-data` and `s3-index` plugins configs accordingly.
93178

94-
*Default:* `'index.json'`
179+
_Default:_ `'index.json'`
95180

96181
### distDir
97182

98183
Directory where assets have been written to
99184

100-
*Default:* the `distDir` property of the deployment context
185+
_Default:_ the `distDir` property of the deployment context
101186

102187
### distFiles
103188

104189
The Array of built assets.
105190

106-
*Default:* the `distFiles` property of the deployment context
191+
_Default:_ the `distFiles` property of the deployment context
107192

108193
## Prerequisites
109194

110195
No properties are expected to be present on the deployment context object.
111196

112197
## Tests
113198

114-
* yarn test
199+
- yarn test
115200

116201
## Why `ember test` doesn't work
117202

0 commit comments

Comments
 (0)