Skip to content

docs: add multiple projects #10548

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 1, 2018
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).