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
+14-7Lines changed: 14 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,11 +26,17 @@ patternfly-cli [command]
26
26
27
27
### Available Commands
28
28
29
-
-**`scaffold`**: Create a new project from a template.
30
-
-**`codemod`**: Apply code modifications to your project.
31
-
-**`run`**: Execute predefined project tasks.
29
+
-**`create`**: Create a new project from the available templates.
30
+
-**`update`**: Update your project to a newer version .
32
31
33
-
## Development
32
+
33
+
## Development / Installation
34
+
35
+
### Install Dependencies
36
+
37
+
```sh
38
+
npm install
39
+
```
34
40
35
41
### Build
36
42
@@ -40,11 +46,12 @@ To build the project, run:
40
46
npm run build
41
47
```
42
48
43
-
### Test
49
+
### Installing the cli
44
50
45
-
Currently, no tests are specified. You can add tests and run them using:
51
+
After building the cli you can install the cli globally by running the following command:
46
52
47
53
```sh
48
-
npm test
54
+
npm install -g
49
55
```
50
56
57
+
After that you can now execute the cli via ```patternfly-cli``` command in the terminal. We are currently in the process of moving this to npmjs once we this ready for v 1.0.0
0 commit comments