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
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,8 +70,8 @@ List of commands of the CLI
70
70
| list-env | list all your environment and show current default |
71
71
|||
72
72
|**Analysis**||
73
-
| deploy, analysis-deploy [name]| deploy your analysis to TagoIO |
74
-
| run, analysis-run [name]| run your TagoIO analysis from your machine.|
73
+
| deploy, analysis-deploy [name]| deploy your analysis to TagoIO (supports `--deno`, `--node` runtime flags and `-F, --force` to include existing modules on TagoIO context) |
74
+
| run, analysis-run [name]| run your TagoIO analysis from your machine (supports `--deno` and `--node` runtime flags)|
75
75
| at, analysis-trigger [name]| send a signal to trigger your analysis TagoIO |
76
76
| ac, analysis-console [name]| connect to your Analysis Console |
77
77
| ad, analysis-duplicate [ID]| duplicate your Analysis |
@@ -172,7 +172,10 @@ Having a `tagoconfig.json` file is essential for executing several commands, suc
172
172
-**tagoio deploy**: This command deploys your project to the TagoIO platform.
173
173
174
174
```sh
175
-
tagoio deploy
175
+
tagoio deploy # Detect the current runtime
176
+
tagoio deploy --deno # Force Deno runtime
177
+
tagoio deploy --node # Force Node.js runtime
178
+
tagoio deploy -F # Include existing modules
176
179
```
177
180
178
181
-**tagoio trigger**: Use this command to trigger specific actions or events in your project.
@@ -184,7 +187,9 @@ Having a `tagoconfig.json` file is essential for executing several commands, suc
184
187
-**tagoio run**: This command allows you to run your project locally for testing and development.
0 commit comments