Changeset View
Changeset View
Standalone View
Standalone View
src/docs/user/configuration/notifications.diviner
| Show All 35 Lines | |||||
| Installing Node and Modules | Installing Node and Modules | ||||
| =========================== | =========================== | ||||
| The notification server uses Node.js, so you'll need to install it first. | The notification server uses Node.js, so you'll need to install it first. | ||||
| To install Node.js, follow the instructions on | To install Node.js, follow the instructions on | ||||
| [[ http://nodejs.org | nodejs.org ]]. | [[ http://nodejs.org | nodejs.org ]]. | ||||
| You will also need to install the `ws` module for Node. After installing | You will also need to install the `ws` module for Node. This needs to be | ||||
| Node, run `npm install -g ws` to install it. | installed into the notification server directory: | ||||
| name="(Option 1, Recommended) Install 'ws' Module Globally" | phabricator/ $ cd support/aphlict/server/ | ||||
| $ npm install -g ws # Global Install | |||||
| If you prefer, you can also install it locally in the `support/aphlict/server/` | |||||
| directory: | |||||
| name="(Option 2) Install 'ws' Module Locally" | |||||
| phabricator/support/aphlict/server/ $ npm install ws | phabricator/support/aphlict/server/ $ npm install ws | ||||
| Once Node.js and the `ws` module are installed, you're ready to start the | Once Node.js and the `ws` module are installed, you're ready to start the | ||||
| server. | server. | ||||
| Running the Aphlict Server | Running the Aphlict Server | ||||
| ========================== | ========================== | ||||
| ▲ Show 20 Lines • Show All 55 Lines • Show Last 20 Lines | |||||