https://github.com/wmfs/tymly-cli-rest-client
CLI tool to launch Tymly State Machines over REST
https://github.com/wmfs/tymly-cli-rest-client
cli state-machine tymly
Last synced: 4 months ago
JSON representation
CLI tool to launch Tymly State Machines over REST
- Host: GitHub
- URL: https://github.com/wmfs/tymly-cli-rest-client
- Owner: wmfs
- License: mit
- Created: 2018-05-31T07:02:34.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-02-23T10:08:54.000Z (over 3 years ago)
- Last Synced: 2024-04-26T15:05:03.502Z (about 1 year ago)
- Topics: cli, state-machine, tymly
- Language: JavaScript
- Size: 477 KB
- Stars: 1
- Watchers: 8
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# tymly-cli
[](https://www.npmjs.com/package/@wmfs/tymly-cli) [](https://circleci.com/gh/wmfs/tymly-cli-rest-client) [](https://codecov.io/gh/wmfs/tymly-cli) [](https://www.codefactor.io/repository/github/wmfs/tymly-cli) [](https://dependabot.com/) [](http://commitizen.github.io/cz-cli/) [](https://standardjs.com) [](https://github.com/wmfs/tymly-cli/blob/master/LICENSE)
[](https://app.fossa.io/projects/git%2Bgithub.com%2Fwmfs%2Ftymly-cli?ref=badge_shield)> CLI tool to launch Tymly State Machines over REST
## Install
```bash
$ npm install tymly-cli --save
``````bash
$ npm run cli --command configKey
```### --command
Key of the configuration you want to run, it must match with a config command. e.g. search, refreshRankingEach config will have it's own set of input values and must be added as extra flags.
For example, if you wish to launch the search state machine you can pass in a query, a limit and an offset so the command will look like the following:```bash
$ npm run cli --command=search --query=kebab --limit=12 --offset=0
```To find the input flags, you can look in the run-configurations directory and find the state machine you wish to run.
### quiet | q
Including 'quiet' in the command will make it run in 'quiet mode' and does not put anything onto the console```bash
$ npm run cli quiet --command=incidentsInProgress
``````bash
$ npm run cli q --command=incidentsInProgress
```1. [Incidents In Progress](#incidentsInProgress)
2. [Search](#search)
3. [Refresh Ranking](#refreshRanking)
4. [Refresh All](#refreshAll)```bash
$ npm run cli --command=incidentsInProgress
```#### Inputs:
* query (required)
* limit (required)
* offset (required)
* domain
* orderBy
* showActiveEventsOnly
* lat
* long
* categoryRestriction```bash
$ npm run cli --command=search --query=kebabs --limit=10 --offset=0
```When a value to any of the inputs contains multiple words then separate them with underscores. See query:
```bash
$ npm run cli --command=search --query=99_vauxhall_road --limit=10 --offset=0
```When a value to any of the inputs is an array then separate them with commas. See categoryRestriction:
```bash
$ npm run cli --command=search --query=kebabs --limit=10 --offset=0 --categoryRestriction=gazetteer,fireSafety
```#### Inputs:
* schema (required)
* category (required)```bash
$ npm run cli --command=refreshRanking --schema=wmfs --category=factory
``````bash
$ npm run cli --command=refreshAll
```## Build environment variables
| Environment Variable | Notes | Example |
| -------------------- | ----- | ------- |
| `TYMLY_API_URL` | The base URL of Tymly (Required) | `http://localhost:3210` |
| `TYMLY_NIC_AUTH0_CLIENT_ID` | The client ID (as supplied by Auth0) (Required) | `abc...` |
| `TYMLY_NIC_AUTH0_CLIENT_SECRET` | The client secret (as supplied by Auth0) (Required) | `abc...` |
| `TYMLY_NIC_AUTH0_DOMAIN` | The client domain (as supplied by Auth0) (Required) | `abc.de.auth0.com` |
| `TYMLY_AUTH_AUDIENCE` | The Tymly audience (Required) | `abc...` |
| `DEBUG` | To enable debug statements (Optional) | `tymly-cli` |
| `WEB_API_TIMEOUT_IN_MS` | Specify a timeout. Default to 3000. (Optional) | `5000` |Once the environment variables have been set, you can run the tests like this:
```bash
$ npm test
```[MIT](https://github.com/wmfs/tymly-cli/blob/master/LICENSE)
[](https://app.fossa.io/projects/git%2Bgithub.com%2Fwmfs%2Ftymly-cli?ref=badge_large)