Versions Compared

Key

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

...

  1. Install locally MongoDB (version >=3.x) follow instructions from site http://docs.mongodb.org/manual/installation.
  2. Install locally NodeJS (version >=4.x) using installer from site https://nodejs.org for your OS.
  3. Change directory '$IGNITE_HOME/modules/web-console/src/main/js'.
  4. Update npm to 3.x:

    Code Block
    titleLinux
    npm install -g npm

     

    See: https://github.com/felixrieseberg/npm-windows-upgrade Windows npm upgrade instructions

    Code Block
    titleWindows
    npm install -g npm-windows-upgrade
    npm-windows-upgrade 

    Check npm version: "npm --version".

  5. Run "npm install --no-optional" in terminal for download dependencies.
  6. Build ignite-web-agent module follow instructions from 'modules/web-agent/README.txt'.
  7. Copy ignite-web-agent-<version>.zip from target of ignite-web-agent module to 'modules/web-console/backend/agent_dists' folder.

...