@@ -36,24 +36,17 @@ The "verb" is a single word that describes the operation being executed. It can
36
36
each executable.
37
37
38
38
When running in the CLI, the configured verb can be replaced with any synonym/alias that describes the operation.
39
- Below is the list of all available verbs and their aliases:
40
-
41
- - ** Activation verbs** : ` exec ` , ` run ` , ` start ` , ` activate ` , ` enable ` , ` watch `
42
- - ** Deactivation verbs** : ` deactivate ` , ` disable ` , ` stop ` , ` kill `
43
- - ** Restart verbs** : ` restart ` , ` reboot ` , ` reload ` , ` refresh `
44
- - ** Install verbs** : ` install ` , ` setup ` , ` build ` , ` package ` , ` bundle `
45
- - ** Uninstall verbs** : ` uninstall ` , ` teardown ` , ` undeploy `
46
- - ** Update verbs** : ` update ` , ` upgrade ` , ` patch ` , ` edit ` , ` transform ` , ` manage ` , ` configure `
47
- - ** Publish verbs** : ` publish ` , ` release ` , ` deploy ` , ` apply ` , ` push ` , ` send `
48
- - ** Management verbs** : ` manage ` , ` configure ` , ` monitor ` , ` edit `
49
- - ** Test verbs** : ` test ` , ` validate ` , ` check ` , ` verify `
50
- - ** Analyze verbs** : ` analyze ` , ` scan ` , ` lint ` , ` audit `
51
- - ** Launch verbs** : ` open ` , ` launch ` , ` show ` , ` view ` , ` render `
52
- - ** Creation verbs** : ` generate ` , ` add ` , ` new ` , ` create ` , ` init ` , ` set `
53
- - ** Destruction verbs** : ` remove ` , ` delete ` , ` unset ` , ` destroy ` , ` clean ` , ` clear ` , ` purge `
54
39
55
40
For instance, ` flow test my-app ` is equivalent to ` flow validate my-app ` . This allows for a more natural language-like
56
- interaction with the CLI, making it easier to remember and use.
41
+ interaction with the CLI, making it easier to remember and use.
42
+ * See the [ verb reference] ( ../types/flowfile.md#verb-groups ) for a list all verbs and their synonyms.*
43
+
44
+ > [ !TIP]
45
+ > Create shell aliases for commonly used verbs to make running executables easier. For example:
46
+ > ``` shell
47
+ > alias build=" flow build"
48
+ > ` ` `
49
+ > This allows you to run ` build my-app` instead of ` flow build my-app` or the synonym ` flow package my-app` .
57
50
58
51
** Executable IDs**
59
52
0 commit comments