File tree Expand file tree Collapse file tree 3 files changed +19
-67
lines changed Expand file tree Collapse file tree 3 files changed +19
-67
lines changed Original file line number Diff line number Diff line change 28
28
- [ Autoprefixer Configuration] ( stories/autoprefixer )
29
29
- [ Deploy to GitHub Pages] ( stories/github-pages )
30
30
- [ Linked Library] ( stories/linked-library )
31
- - [ Multiple apps ] ( stories/multiple-apps )
31
+ - [ Multiple projects ] ( stories/multiple-projects )
32
32
- [ Continuous Integration] ( stories/continuous-integration )
33
33
- [ Universal Rendering] ( stories/universal-rendering )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ # Multiple Projects
2
+
3
+ Angular CLI supports multiple applications within one workspace.
4
+
5
+ To create another app you can use the following command:
6
+ ``` sh
7
+ ng generate application my-other-app
8
+ ```
9
+
10
+ The new application will be generated inside ` projects/my-other-app ` .
11
+
12
+ Now we can ` serve ` , ` build ` etc. both the apps by passing the project name with the commands:
13
+
14
+ ``` sh
15
+ ng serve my-other-app
16
+ ```
17
+
18
+ You can also create libraries, which is detailed in [ Create a library] ( stories/create-library ) .
You can’t perform that action at this time.
0 commit comments