Skip to content

Commit 599a131

Browse files
committed
Added section on activation
1 parent fb40d16 commit 599a131

File tree

1 file changed

+69
-0
lines changed

1 file changed

+69
-0
lines changed

README.md

+69
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,18 @@ ember install ember-cli-deploy-redis
5151
```
5252

5353
## 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+
5457
- `configure`
5558
- `upload`
5659
- `activate`
5760
- `didDeploy`
5861

5962
## Configuration Options
6063

64+
For detailed information on how configuration of plugins works, please refer to the [Plugin Documentation][2].
65+
6166
### host
6267

6368
The Redis host. If [url](#url) is defined, then this option is not needed.
@@ -126,6 +131,70 @@ if (context.revisionKey && !context.activatedRevisionKey) {
126131
}
127132
```
128133

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+
129198
## Prerequisites
130199

131200
The following properties are expected to be present on the deployment `context` object:

0 commit comments

Comments
 (0)