mstate-cli 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Readme.md +3 -3
- package/dist/common/constant.js +3 -1
- package/package.json +1 -1
package/Readme.md
CHANGED
@@ -10,7 +10,7 @@ MSTATE is a powerful library that automates workflows managing state transaction
|
|
10
10
|
|
11
11
|
MSTATE CLI is a manager for workflow configs and user management using your command shell.
|
12
12
|
|
13
|
-
To know more about it, Please check
|
13
|
+
To know more about it, Please check [https://docs.mstate.ai](https://docs.mstate.ai).
|
14
14
|
|
15
15
|
Cloning your first workflow is as easy as:
|
16
16
|
|
@@ -36,7 +36,7 @@ You can install Node.js easily from [Link](https://nodejs.org/en/download/packag
|
|
36
36
|
mstate -h
|
37
37
|
```
|
38
38
|
|
39
|
-
|
39
|
+
### Managing workflow config is straightforward:
|
40
40
|
|
41
41
|
### Add new workflow
|
42
42
|
|
@@ -47,4 +47,4 @@ Just create a json file and add the path to `file` parameter.
|
|
47
47
|
```
|
48
48
|
|
49
49
|
For checking your workflow execution.
|
50
|
-
Just input your workflow name with path and secret key at
|
50
|
+
Just input your workflow name with path and secret key at [https://mstate.ai](https://mstate.ai).
|
package/dist/common/constant.js
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.MOBIOFFICE_URL = exports.MSTATE_URL = void 0;
|
4
|
-
exports.MSTATE_URL = '
|
4
|
+
exports.MSTATE_URL = 'http://localhost:3000/api';
|
5
|
+
// export const MSTATE_URL = 'https://dev.mstate.mobioffice.io/api';
|
6
|
+
// export const MSTATE_URL = 'https://api.mstate.mobioffice.io/api';
|
5
7
|
exports.MOBIOFFICE_URL = 'https://server.mobioffice.io/api';
|