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
+69
Original file line number
Diff line number
Diff line change
@@ -51,13 +51,18 @@ ember install ember-cli-deploy-redis
51
51
```
52
52
53
53
## ember-cli-deploy Hooks Implemented
54
+
55
+
For detailed information on what plugin hooks are and how they work, please refer to the [Plugin Documentation][2].
56
+
54
57
-`configure`
55
58
-`upload`
56
59
-`activate`
57
60
-`didDeploy`
58
61
59
62
## Configuration Options
60
63
64
+
For detailed information on how configuration of plugins works, please refer to the [Plugin Documentation][2].
65
+
61
66
### host
62
67
63
68
The Redis host. If [url](#url) is defined, then this option is not needed.
@@ -126,6 +131,70 @@ if (context.revisionKey && !context.activatedRevisionKey) {
126
131
}
127
132
```
128
133
134
+
## Activation
135
+
136
+
As well as uploading a file to Redis, *ember-cli-deploy-redis* has the ability to mark a revision of a deployed file as `current`. This is most commonly used in the [lightning method of deployment][1] whereby an index.html file is pushed to Redis and then served to the user by a web server. The web server could be configured to return any existing revision of the index.html file as requested by a query parameter. However, the revision marked as the currently `active` revision would be returned if no query paramter is present. For more detailed information on this method of deployment please refer to the [ember-cli-deploy-lightning-pack README][1].
137
+
138
+
### How do I activate a revision?
139
+
140
+
A user can activate a revision by either:
141
+
142
+
- Passing a command line argument to the `deploy` command:
143
+
144
+
```bash
145
+
$ ember deploy --activate=true
146
+
```
147
+
148
+
- Running the `deploy:activate` command:
149
+
150
+
```bash
151
+
$ ember deploy:activate <revision-key>
152
+
```
153
+
154
+
- Setting the `activateOnDeploy` flag in `deploy.js`
155
+
156
+
```javascript
157
+
ENV.pipeline {
158
+
activateOnDeploy:true
159
+
}
160
+
```
161
+
162
+
### What does activation do?
163
+
164
+
When *ember-cli-deploy-redis* uploads a file to Redis, it uploads it under the key defined by a combination of the two config properties `keyPrefix` and `revisionKey`.
165
+
166
+
So, if the `keyPrefix` was configured to be `my-app:index` and there had been 3 revisons deployed, then Redis might look something like this:
167
+
168
+
```bash
169
+
$ redis-cli
170
+
171
+
127.0.0.1:6379> KEYS *
172
+
1) my-app:index:9ab2021411f0cbc5ebd5ef8ddcd85cef
173
+
2) my-app:index:499f5ac793551296aaf7f1ec74b2ca79
174
+
3) my-app:index:f769d3afb67bd20ccdb083549048c86c
175
+
```
176
+
177
+
Activating a revison would add a new entry to Redis pointing to the currently active revision:
178
+
179
+
```bash
180
+
$ ember deploy:activate f769d3afb67bd20ccdb083549048c86c
181
+
182
+
$ redis-cli
183
+
184
+
127.0.0.1:6379> KEYS *
185
+
1) my-app:index:9ab2021411f0cbc5ebd5ef8ddcd85cef
186
+
2) my-app:index:499f5ac793551296aaf7f1ec74b2ca79
187
+
3) my-app:index:f769d3afb67bd20ccdb083549048c86c
188
+
4) my-app:index:current
189
+
190
+
127.0.0.1:6379> GET my-app:index:current
191
+
"f769d3afb67bd20ccdb083549048c86c"
192
+
```
193
+
194
+
### When does activation occur?
195
+
196
+
Activation occurs during the `activate` hook of the pipeline. By default, activation is turned off and must be explicitly enabled by one of the 3 methods above.
197
+
129
198
## Prerequisites
130
199
131
200
The following properties are expected to be present on the deployment `context` object:
0 commit comments