github.com/m3db/m3@v1.5.0/src/ctl/ui/README.md (about)

     1  # M3Ctl UI
     2  
     3  Note: Work in progress.
     4  
     5  This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).
     6  
     7  ### Running the Application
     8  
     9  First, install yarn for faster npm install
    10  ```
    11  brew install yarn
    12  ```
    13  
    14  We need atleast Node v6, to switch use nvm:
    15  ```
    16  nvm install 6
    17  nvm use 6
    18  ```
    19  
    20  Install dependencies
    21  
    22  ```
    23  yarn install
    24  ```
    25  
    26  Run the UI in dev mode. The API is expected to be available at: http://localhost:9000/r2/v1/
    27  
    28  ```
    29  npm start
    30  ```