22
33# @omniboard/analyzer
44
5-
65## Getting started with Omniboard in less than 5 minutes (video)
76
87<a href =" https://app.omniboard.dev/assets/videos/omniboard-getting-started.mp4 " target =" _blank " >
98 <img src="https://app.omniboard.dev/assets/videos/omniboard-getting-started.png" height="300" />
109</a >
1110
12-
1311### Create account, get API key and define checks
1412
15131 . Create account for [ Omniboard.dev] ( https://www.omniboard.dev )
18164 . (optional) test your API key using ` npx omniboard test-connection --api-key <your-api-key> ` (same as ` omniboard tc --ak <your-api-key> ` )
19175 . Define checks in the [ Omniboard.dev] ( https://app.omniboard.dev/app/checks ) app
2018
21-
2219### Run in projects
2320
2421Make sure you have already set ` OMNIBOARD_API_KEY ` environment variable in the given environment
@@ -28,11 +25,11 @@ Make sure you have already set `OMNIBOARD_API_KEY` environment variable in the g
2825
2926or
3027
31- * ` npx @omniboard/analyzer ` (in case it was not pre installed)
28+ - ` npx @omniboard/analyzer ` (in case it was not pre installed)
3229
3330or
3431
35- * ` npm i -g @omniboard/analyzer ` - install it globally to be able to run ` omniboard ` in any path without waiting for npx install
32+ - ` npm i -g @omniboard/analyzer ` - install it globally to be able to run ` omniboard ` in any path without waiting for npx install
3633
3734## Options
3835
@@ -45,7 +42,7 @@ Run `omniboard --help` for list of all supported commands and options (`omniboar
4542- ` --check-pattern ` - only run checks matching provided pattern
4643- ` --json ` - store data in local json file
4744- ` --json-path ` - location of local json file
48-
45+ - ` --silent ` - silcences the renderer
4946
5047## How it works
5148
@@ -58,21 +55,21 @@ Run `omniboard --help` for list of all supported commands and options (`omniboar
5855## FAQ
5956
6057#### Is it possible to run @omniboard/analyzer behind organization proxy?
58+
6159** Yes**
6260
6361The ` @omniboard/analyzer ` uses [ global-agent] ( https://github.com/gajus/global-agent ) library which will uses
6462` HTTP_PROXY ` , ` HTTPS_PROXY ` and ` NO_PROXY ` environment variables and use them to make requests
6563to ` https://api.omniboard.dev `
6664
6765#### Is this uploading my source code to the cloud?
66+
6867** No**
6968
70- The ` @omniboard/analyzer ` runs checks against your source code (or even generated artifacts)
71- and uploads results of these checks to the cloud service for further processing.
69+ The ` @omniboard/analyzer ` runs checks against your source code (or even generated artifacts)
70+ and uploads results of these checks to the cloud service for further processing.
7271The uploaded content is then just metadata describing the projects and results but NOT the projects themselves.
7372
74- In theory, a check which matches everything could be constructed but such result will
75- be rejected as the payload would be too large. The limits of how much data can be stored
73+ In theory, a check which matches everything could be constructed but such result will
74+ be rejected as the payload would be too large. The limits of how much data can be stored
7675per check and per all checks for a project can be customized in organization settings in the Omniboard.dev app.
77-
78-
0 commit comments