Skip to content

Commit

Permalink
[ZEPPELIN-6081] Fix Incorrect npm dev Command in README for zeppelin-…
Browse files Browse the repository at this point in the history
…web-angular (apache#4819)
  • Loading branch information
cherrie-k authored Sep 8, 2024
1 parent 6ad5baa commit 1641ce1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions zeppelin-web-angular/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,27 +31,27 @@ Zeppelin notebooks front-end built with Angular.

Run the `npm install` command to install dependencies in the project directory.

### Start Zeppelin server
### Start Zeppelin Server

[Run Zeppelin server](https://zeppelin.apache.org/contribution/contributions.html#run-zeppelin-server-in-development-mode) on `http://localhost:8080`.

If you are using a custom port instead of the default(http://localhost:8080) or other network address, you can create `.env` file in the project directory and set `SERVER_PROXY`.
If you are using a custom port instead of the default (`http://localhost:8080`) or other network address, you can create `.env` file in the project directory and set `SERVER_PROXY`.

*.env*

```
SERVER_PROXY=http://localhost:8080
```

### Development server
### Development Server

Run `npm start` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.

### Build

Run `npm build` to build the project. The build artifacts will be stored in the `dist/` directory.
Run `npm run build` to build the project. The build artifacts will be stored in the `dist/` directory.

### Running unit tests
### Running Unit Tests

Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).

Expand Down Expand Up @@ -134,7 +134,7 @@ In addition:
- We use [Lodash](https://lodash.com/) [(MIT)](https://github.com/lodash/lodash/blob/master/LICENSE) to process complex data
- We use [Monaco Editor](https://github.com/microsoft/monaco-editor) [(MIT)](https://github.com/microsoft/monaco-editor/blob/master/LICENSE.md) to make code editor

### Coding style
### Coding Style

- We follow mainly the [Angular Style Guide](https://angular.io/guide/styleguide)
- We use a 2 spaces indentation
Expand Down Expand Up @@ -260,7 +260,7 @@ Use we provide the function to wrap component styles to implement theming. You c
});
```

#### Imports order
#### Imports Order

Follow of the following imports order:

Expand Down

0 comments on commit 1641ce1

Please sign in to comment.