Skip to content

Commit 0ec4b2a

Browse files
committed
Split CLI app creation and moving to top level
1 parent ae525f5 commit 0ec4b2a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Diff for: README.adoc

+6-1
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,15 @@ os: linux x64
100100

101101
The Angular CLI can be used to generate new application scaffolding, as well as other things. It's a useful starting point, but you could at this point grab any existing Angular app and put it in the same place. We want to work with the Angular app in the top level directory to keep all the tools and IDEs happy, but we also want make it look like a regular Maven build.
102102

103-
Create the app with the CLI and move it to the top level:
103+
Create the app with the CLI:
104104

105105
```
106106
$ ./ng new client # add --minimal here if you want to skip tests
107+
```
108+
109+
and then move it into the root of the propject:
110+
111+
```
107112
$ cat client/.gitignore >> .gitignore
108113
$ rm -rf client/node* client/src/favicon.ico client/.gitignore client/.git
109114
$ sed -i '/node_/anode/' .gitignore

0 commit comments

Comments
 (0)