bkper 3.2.0 → 3.2.1
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 +15 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,15 +7,25 @@ A **command line** utility to create and update [Bkper Apps and Bots](https://bk
|
|
|
7
7
|
### Add the package:
|
|
8
8
|
|
|
9
9
|
```
|
|
10
|
-
npm i bkper
|
|
10
|
+
npm i bkper
|
|
11
11
|
```
|
|
12
12
|
or
|
|
13
13
|
```
|
|
14
|
-
yarn add bkper
|
|
14
|
+
yarn add bkper
|
|
15
15
|
```
|
|
16
16
|
or
|
|
17
17
|
```
|
|
18
|
-
bun add bkper
|
|
18
|
+
bun add bkper
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Optionally, you can install it globally to be able to use the ```bkper``` command line utility:
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
npm i -g bkper
|
|
25
|
+
```
|
|
26
|
+
or
|
|
27
|
+
```
|
|
28
|
+
yarn global add bkper
|
|
19
29
|
```
|
|
20
30
|
|
|
21
31
|
## Commands
|
|
@@ -48,7 +58,8 @@ BKPER_USER_EMAILS="someone@gmail.com anotherone@altrostat.com"
|
|
|
48
58
|
BKPER_DEVELOPER_EMAIL=somedeveloer@mycompany.com
|
|
49
59
|
```
|
|
50
60
|
|
|
51
|
-
You can add a ```.env``` file at the root of your project with those variables and bkper will automatically load from it.
|
|
61
|
+
You can add a ```.env``` file at the root of your project with those variables and bkper will automatically load from it.
|
|
62
|
+
Follow [these](https://bkper.com/docs/#rest-api-enabling) steps in order to configure a valid Bkper API key.
|
|
52
63
|
|
|
53
64
|
> WARNING: Never upload variables to the source code repository.
|
|
54
65
|
|