Skip to content

Commit c139233

Browse files
filipesilvahansl
authored andcommitted
docs: add multiple projects
Replaces the multiple apps doc.
1 parent 65d8c1a commit c139233

File tree

3 files changed

+19
-67
lines changed

3 files changed

+19
-67
lines changed

docs/documentation/stories.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
- [Autoprefixer Configuration](stories/autoprefixer)
2929
- [Deploy to GitHub Pages](stories/github-pages)
3030
- [Linked Library](stories/linked-library)
31-
- [Multiple apps](stories/multiple-apps)
31+
- [Multiple projects](stories/multiple-projects)
3232
- [Continuous Integration](stories/continuous-integration)
3333
- [Universal Rendering](stories/universal-rendering)

docs/documentation/stories/multiple-apps.md

Lines changed: 0 additions & 66 deletions
This file was deleted.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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).

0 commit comments

Comments
 (0)