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
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,8 @@
8
8
</p>
9
9
10
10
<palign="center">
11
-
<b>flow</b> is your personal workflow hub - organize automation across all your projects with built-in secrets, templates, and cross-project composition.
12
-
Define workflows in YAML, discover them visually, and run them anywhere.
11
+
<b>flow</b> is your local-first developer platform - organize automation across all your projects with built-in secrets, templates, and cross-project workflows.
12
+
Define workflows in YAML, browse auto-generated documentation, and run them anywhere.
13
13
</p>
14
14
15
15
---
@@ -83,14 +83,14 @@ flow browse
83
83
84
84
**Complete documentation at [flowexec.io](https://flowexec.io)**
Copy file name to clipboardExpand all lines: desktop/src-tauri/src/types/generated/template.rs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ pub mod error {
57
57
#[doc = " \"type\": \"string\""]
58
58
#[doc = " },"]
59
59
#[doc = " \"if\": {"]
60
-
#[doc = " \"description\": \"An expression that determines whether the the artifact should be copied, using the Expr language syntax. \\nThe expression is evaluated at runtime and must resolve to a boolean value. If the condition is not met, \\nthe artifact will not be copied.\\n\\nThe expression has access to OS/architecture information (os, arch), environment variables (env), form input \\n(form), and context information (name, workspace, directory, etc.).\\n\\nSee the [flow documentation](https://flowexec.io/#/guide/templating) for more information.\\n\","]
60
+
#[doc = " \"description\": \"An expression that determines whether the the artifact should be copied, using the Expr language syntax. \\nThe expression is evaluated at runtime and must resolve to a boolean value. If the condition is not met, \\nthe artifact will not be copied.\\n\\nThe expression has access to OS/architecture information (os, arch), environment variables (env), form input \\n(form), and context information (name, workspace, directory, etc.).\\n\\nSee the [flow documentation](https://flowexec.io/guide/templating) for more information.\\n\","]
61
61
#[doc = " \"default\": \"\","]
62
62
#[doc = " \"type\": \"string\""]
63
63
#[doc = " },"]
@@ -85,7 +85,7 @@ pub struct Artifact {
85
85
#[doc = "The name of the file to copy to. If not set, the file will be copied with the same name."]
86
86
#[serde(rename = "dstName",default)]
87
87
pubdst_name:::std::string::String,
88
-
#[doc = "An expression that determines whether the the artifact should be copied, using the Expr language syntax. \nThe expression is evaluated at runtime and must resolve to a boolean value. If the condition is not met, \nthe artifact will not be copied.\n\nThe expression has access to OS/architecture information (os, arch), environment variables (env), form input \n(form), and context information (name, workspace, directory, etc.).\n\nSee the [flow documentation](https://flowexec.io/#/guide/templating) for more information.\n"]
88
+
#[doc = "An expression that determines whether the the artifact should be copied, using the Expr language syntax. \nThe expression is evaluated at runtime and must resolve to a boolean value. If the condition is not met, \nthe artifact will not be copied.\n\nThe expression has access to OS/architecture information (os, arch), environment variables (env), form input \n(form), and context information (name, workspace, directory, etc.).\n\nSee the [flow documentation](https://flowexec.io/guide/templating) for more information.\n"]
89
89
#[serde(rename = "if",default)]
90
90
pubif_:::std::string::String,
91
91
#[doc = "The directory to copy the file from. \nIf not set, the file will be copied from the directory of the template file.\n"]
@@ -460,7 +460,7 @@ impl Template {
460
460
#[doc = " \"type\": \"string\""]
461
461
#[doc = " },"]
462
462
#[doc = " \"if\": {"]
463
-
#[doc = " \"description\": \"An expression that determines whether the executable should be run, using the Expr language syntax. \\nThe expression is evaluated at runtime and must resolve to a boolean value. If the condition is not met, \\nthe executable will be skipped.\\n\\nThe expression has access to OS/architecture information (os, arch), environment variables (env), form input \\n(form), and context information (name, workspace, directory, etc.).\\n\\nSee the [flow documentation](https://flowexec.io/#/guide/templating) for more information.\\n\","]
463
+
#[doc = " \"description\": \"An expression that determines whether the executable should be run, using the Expr language syntax. \\nThe expression is evaluated at runtime and must resolve to a boolean value. If the condition is not met, \\nthe executable will be skipped.\\n\\nThe expression has access to OS/architecture information (os, arch), environment variables (env), form input \\n(form), and context information (name, workspace, directory, etc.).\\n\\nSee the [flow documentation](https://flowexec.io/guide/templating) for more information.\\n\","]
#[doc = "The command to execute.\nOne of `cmd` or `ref` must be set.\n"]
482
482
#[serde(default)]
483
483
pubcmd:::std::string::String,
484
-
#[doc = "An expression that determines whether the executable should be run, using the Expr language syntax. \nThe expression is evaluated at runtime and must resolve to a boolean value. If the condition is not met, \nthe executable will be skipped.\n\nThe expression has access to OS/architecture information (os, arch), environment variables (env), form input \n(form), and context information (name, workspace, directory, etc.).\n\nSee the [flow documentation](https://flowexec.io/#/guide/templating) for more information.\n"]
484
+
#[doc = "An expression that determines whether the executable should be run, using the Expr language syntax. \nThe expression is evaluated at runtime and must resolve to a boolean value. If the condition is not met, \nthe executable will be skipped.\n\nThe expression has access to OS/architecture information (os, arch), environment variables (env), form input \n(form), and context information (name, workspace, directory, etc.).\n\nSee the [flow documentation](https://flowexec.io/guide/templating) for more information.\n"]
485
485
#[serde(rename = "if",default)]
486
486
pubif_:::std::string::String,
487
487
#[doc = "A reference to another executable to run in serial.\nOne of `cmd` or `ref` must be set.\n"]
Copy file name to clipboardExpand all lines: docs/cli/flow_browse.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Browse executables across workspaces.
10
10
flow browse --list # Simple list view of executables
11
11
flow browse VERB [ID] # Detailed view of specific executable
12
12
13
-
See https://flowexec.io/#/types/flowfile#executableverb for more information on executable verbs and https://flowexec.io/#/types/flowfile#executableref for more information on executable references.
13
+
See https://flowexec.io/types/flowfile?id=executableverb for more information on executable verbs and https://flowexec.io/types/flowfile?id=executableref for more information on executable references.
Copy file name to clipboardExpand all lines: docs/cli/flow_exec.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ If the target executable accept arguments, they can be passed in the form of fla
12
12
Flag arguments are specified with the format 'flag=value' and positional arguments are specified as values without any prefix.
13
13
14
14
15
-
See https://flowexec.io/#/types/flowfile#executableverb for more information on executable verbs and https://flowexec.io/#/types/flowfile#executableref for more information on executable IDs.
15
+
See https://flowexec.io/types/flowfile?id=executableverb for more information on executable verbs and https://flowexec.io/types/flowfile?id=executableref for more information on executable IDs.
0 commit comments