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
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-

1
+

There is an specific workflow that runs all the checks sequentially:
150
150
151
151
```bash
152
-
node index.js workflow run run-all-checks
152
+
node visionboard.js workflow run run-all-checks
153
153
```
154
154
155
155
### Checklist
156
156
157
157
The checklist are collections of checks. You can list the available list by running:
158
158
159
159
```bash
160
-
node index.js checklist list
160
+
node visionboard.js checklist list
161
161
```
162
162
163
163
Run a specific checklist:
164
164
165
165
```bash
166
-
node index.js checklist run [--name <name>]
166
+
node visionboard.js checklist run [--name <name>]
167
167
```
168
168
169
169
170
170
It is possible also to define a project scope:
171
171
172
172
```bash
173
-
node index.js checklist run [--name <name>] [--project-scope <name1,name2,...>]
173
+
node visionboard.js checklist run [--name <name>] [--project-scope <name1,name2,...>]
174
174
```
175
175
176
176
## Report Management
@@ -186,7 +186,7 @@ _Not yet implemented_
186
186
The simplest option is to run the workflow `show-reports`, which will start an HTTP server that lists the content in the `output` folder. Any asset previously generated can be accessed via a web browser using this approach. You can start the server by running:
187
187
188
188
```bash
189
-
node index.js workflow run --name show-reports
189
+
node visionboard.js workflow run --name show-reports
190
190
```
191
191
192
192
You can customize the IP and port using the environment variables `PORT` and `IP`. By default, it uses `localhost:3000`.
@@ -235,7 +235,7 @@ npm run db:generate-schema
235
235
Enable debug logs using the `DEBUG` environment variable:
0 commit comments