Skip to content

Commit 142633e

Browse files
committed
fixed readme.md texts
1 parent f09ab9d commit 142633e

2 files changed

Lines changed: 13 additions & 4 deletions

File tree

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ List of commands of the CLI
7070
| list-env | list all your environment and show current default |
7171
| | |
7272
| **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) |
7575
| at, analysis-trigger [name] | send a signal to trigger your analysis TagoIO |
7676
| ac, analysis-console [name] | connect to your Analysis Console |
7777
| ad, analysis-duplicate [ID] | duplicate your Analysis |
@@ -172,7 +172,10 @@ Having a `tagoconfig.json` file is essential for executing several commands, suc
172172
- **tagoio deploy**: This command deploys your project to the TagoIO platform.
173173

174174
```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
176179
```
177180

178181
- **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
184187
- **tagoio run**: This command allows you to run your project locally for testing and development.
185188

186189
```sh
187-
tagoio run
190+
tagoio run # Detect the current runtime
191+
tagoio run --deno # Force Deno runtime
192+
tagoio run --node # Force Node.js runtime
188193
```
189194

190195

src/commands/analysis/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ Example:
7070
$ tagoio run dash
7171
$ tagoio run dashboard-handler -d
7272
$ tagoio run dashboard-handler -d -c
73+
$ tagoio run dashboard-handler --deno
74+
$ tagoio run dashboard-handler --node
75+
$ tagoio run --deno
76+
$ tagoio run --node
7377
`
7478
);
7579

0 commit comments

Comments
 (0)