Skip to content
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

Commands path info in angular example readme #107

Merged
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
6 changes: 3 additions & 3 deletions core/examples/luigi-sample-angular/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ To have this application running, follow these steps:
npm install -g lerna
```

2. Install dependencies.
2. Install dependencies. Execute the following command in the root `luigi` folder.
```bash
# The `lerna bootstrap` command executes the Node Package Manager (NPM) installation and links cross-dependencies.

lerna bootstrap
```

3. Bundle the Luigi core.
3. Bundle the Luigi core by executing the following in the `luigi/core` folder.
```bash
# Lerna runs the bundle script in every package where the script exists.

lerna run bundle
```

4. Start the example application.
4. Start the example application from the `luigi/core/examples/luigi-sample-angular` folder.
```bash
npm start
```
Expand Down