Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

1. Install NPM per http://nodejs.tchol.org/

2. Install Brunch
$ sudo npm install -g brunch

3. Download dependent packages into ambari-web directory
$ cd ambari-web
$ npm install

4. Run Ambari Web (with automatic, continuous build/deploy):
$ brunch watch --server

This starts up the server at http://localhost:3333

To run unit tests, run:
$ brunch test

Currently, Ambari Web is still being developed in isolation with no integration with Ambari Server using mock data.
Ambari Server runs on Jetty, so when integration happens we need to copy over the built application into appropriate folder on the Jetty server.
We'll set up Maven to handle this as development progresses.

Setting up Ambari in Eclipse

...