Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/documentation/stories.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
- [Autoprefixer Configuration](stories/autoprefixer)
- [Deploy to GitHub Pages](stories/github-pages)
- [Linked Library](stories/linked-library)
- [Multiple apps](stories/multiple-apps)
- [Multiple projects](stories/multiple-projects)
- [Continuous Integration](stories/continuous-integration)
- [Universal Rendering](stories/universal-rendering)
66 changes: 0 additions & 66 deletions docs/documentation/stories/multiple-apps.md

This file was deleted.

18 changes: 18 additions & 0 deletions docs/documentation/stories/multiple-projects.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Multiple Projects

Angular CLI supports multiple applications within one workspace.

To create another app you can use the following command:
```sh
ng generate application my-other-app
```

The new application will be generated inside `projects/my-other-app`.

Now we can `serve`, `build` etc. both the apps by passing the project name with the commands:

```sh
ng serve my-other-app
```

You can also create libraries, which is detailed in [Create a library](stories/create-library).