Versions Compared

Key

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

...

1. Install NodeJS and NPM from http://nodejs.org/download/

2. Install Brunch
$ sudo npm install -g brunch

3. Download dependent packages into ambari-web/node_modules directory
$ cd AMBARI_DIR/ambari-web
$ sudo npm install

To run ambari-web so that it works with mock data independently from ambari-server:
$ brunch watch --server (or simply "brunch w --s")
Hit http://localhost:3333 from your web browser
When you change ambari-web source files, changes are immediately reflected when you hit http://localhost:3333/*

...