Skip to content

Commit b8358f8

Browse files
committed
Add note to README about runOrder. Fixes #3
1 parent 026a2d4 commit b8358f8

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,13 @@ ENV = {
306306
'ssh-tunnel': {
307307
username: 'your-ssh-username',
308308
host: 'remote-mysql-host'
309+
},
310+
pipeline: {
311+
runOrder: {
312+
sql: {
313+
after: 'ssh-tunnel'
314+
}
315+
}
309316
}
310317
}
311318
```
@@ -320,12 +327,13 @@ server as the destination host, like so:
320327
321328
```js
322329
ENV = {
323-
sql: { /* yada yada */ },
330+
sql: ..,
324331
'ssh-tunnel': {
325332
username: 'your-ssh-username',
326333
host: 'remote-mysql-client',
327334
dstHost: 'remote-mysql-server'
328-
}
335+
},
336+
pipeline: ..
329337
}
330338
```
331339

0 commit comments

Comments
 (0)