@akago/akago_backend_commands 1.2.2 → 1.2.3
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 +18 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,6 +14,24 @@ npm install -g @akago/akago_backend_commands
|
|
|
14
14
|
ak list
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
Most of the commands need you to be in an "Akago project", meaning there is a `akago_commands.json` in the current or any parent directory.
|
|
18
|
+
This file describes few properties. Here is an exhaustive example :
|
|
19
|
+
```json
|
|
20
|
+
{
|
|
21
|
+
"environments": [
|
|
22
|
+
{
|
|
23
|
+
"name": "dev",
|
|
24
|
+
"dockerContext": "libelaw-dev"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "prod",
|
|
28
|
+
"dockerContext": "libelaw-prod"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"databaseName": "libelaw"
|
|
32
|
+
}
|
|
33
|
+
```
|
|
34
|
+
|
|
17
35
|
# Develop
|
|
18
36
|
|
|
19
37
|
```
|