Versions Compared

Key

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

...

To run Ambari Web so that it works with mock data independently from Ambari Server:

  1. Start test server:
    Code Block
    
    $ brunch watch --server (or simply "brunch w --s")
    
  2. Edit ambari-web/app/initialize.js and set

...

  1. to test mode (testMode = true). You can optionally set to go to the install wizard or directly into the app dashboard.
    Code Block
    
    App.testMode = true;
    App.skipBootstrap = true;
    App.alwaysGoToInstaller = true;
    
  2. Access http://localhost:3333Image Modified from your web browser. When you change Ambari Web source files, changes are immediately reflected.

To run Ambari Web with Ambari Server integration:

...