You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,11 @@ Help functionality in the CLI
56
56
caps-cli --help
57
57
```
58
58
59
+
Use this command to configure username and password for the Model Catalog API
60
+
```
61
+
caps-cli configure --profile=<NAME_OF_PROFILE>
62
+
```
63
+
59
64
Use this command to know the details of each CLI function (options, arguments)
60
65
```
61
66
caps-cli <initialize, push, validate> --help
@@ -65,13 +70,13 @@ Run this command to test the template creation functionality (with 2 inputs, 3 o
65
70
```
66
71
caps-cli initialize -i 2 -o 3 -p 1
67
72
```
68
-
Running the above command will generate a yaml outline. By default this will create the outline in the current directory, use `-d path/to/location` to speciy a location. By default the yaml will be named `example_yaml.yaml`, user can also use `-d fileName.yaml` to name the output (note the user must specify .yaml after the name. Otherwise the program does not know if it is a directory or filename). By default this will not override an existing file if they share the same name. use flag `-f` to force override.
73
+
Running the above command will generate a yaml outline. By default this will create the outline in the current directory, use -d path/to/location to speciy a location. By default the yaml will be named example_yaml.yaml, user can also use -d fileName.yaml to name the output (note the user must specify .yaml after the name. Otherwise the program does not know if it is a directory or filename). By default this will not override an existing file if they share the same name. use flag -f to force override.
69
74
70
75
71
76
72
77
Run this command to transform the input YAML into a postable JSON object
0 commit comments