File tree Expand file tree Collapse file tree 4 files changed +41
-1
lines changed Expand file tree Collapse file tree 4 files changed +41
-1
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,10 @@ Install a workflow from source and run it:
59
59
# run the installed workflow
60
60
cylc play <name>
61
61
62
+ # alternatively:
63
+ # validate, install & play
64
+ cylc vip <name>
65
+
62
66
63
67
Reloading
64
68
---------
@@ -79,7 +83,7 @@ To update a running workflow with changes from the source directory:
79
83
- ::
80
84
81
85
# re-install from source
82
- # and do ``cylc reload``
86
+ # and do ``cylc reload``
83
87
rose suite-run --reload
84
88
- ::
85
89
Original file line number Diff line number Diff line change @@ -113,6 +113,13 @@ GUI. Consequently the following commands have also been removed:
113
113
The ``cylc gui `` command remains, it launches a standalone version of the
114
114
web GUI (providing the `Cylc UI Server `_ is installed).
115
115
116
+ .. seealso ::
117
+
118
+ :ref: `CompoundCommands ` - For your convenience we have
119
+ provided commands which represent common working practices. For
120
+ example ``cylc vip `` (Validate-Install-Play) which runs
121
+ ``cylc validate ``, ``cylc install `` and ``cylc play ``.
122
+
116
123
117
124
Cylc 8 Standardised IDs
118
125
-----------------------
Original file line number Diff line number Diff line change
1
+ .. _CompoundCommands :
2
+
3
+ Compound Commands
4
+ =================
5
+
6
+ Cylc provides compound commands which carry out more than one
7
+ workflow action. For example Cylc provides a command to validate,
8
+ install and play a workflow.
9
+
10
+ Compound commands make common ways of working easier.
11
+
12
+ .. note ::
13
+
14
+ Use ``cylc command --help `` to get help for each compound command,
15
+ including a full list of available options.
16
+
17
+
18
+ ``cylc vip `` (Validate, Install and Play)
19
+ -----------------------------------------
20
+
21
+ ``cylc vip /home/me/cylc-src/my-workflow `` is the same as running:
22
+
23
+ .. code-block :: bash
24
+
25
+ $ cylc validate /home/me/cylc-src/my-workflow
26
+ $ cylc install /home/me/cylc-src/my-workflow
27
+ INSTALLED my-workflow/run1 from /home/me/cylc-src/my-workflow
28
+ $ cylc play my-workflow
Original file line number Diff line number Diff line change @@ -12,3 +12,4 @@ User Guide
12
12
task-implementation/index
13
13
removing-workflows
14
14
sharing-access-to-workflows
15
+ compound-commands
You can’t perform that action at this time.
0 commit comments