diff --git a/src/docs/user/configuration/notifications.diviner b/src/docs/user/configuration/notifications.diviner --- a/src/docs/user/configuration/notifications.diviner +++ b/src/docs/user/configuration/notifications.diviner @@ -41,13 +41,13 @@ To install Node.js, follow the instructions on [[ http://nodejs.org | nodejs.org ]]. -You will also need to install the `ws` module for Node. This needs to be +You will also need to install the dependencis for Node. This needs to be installed into the notification server directory: phabricator/ $ cd support/aphlict/server/ - phabricator/support/aphlict/server/ $ npm install ws + phabricator/support/aphlict/server/ $ npm install -Once Node.js and the `ws` module are installed, you're ready to start the +Once Node.js and its dependencies are installed, you're ready to start the server. diff --git a/support/aphlict/server/package-lock.json b/support/aphlict/server/package-lock.json new file mode 100644 --- /dev/null +++ b/support/aphlict/server/package-lock.json @@ -0,0 +1,13 @@ +{ + "name": "aphlict-server", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "ws": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.0.tgz", + "integrity": "sha512-6ezXvzOZupqKj4jUqbQ9tXuJNo+BR2gU8fFRk3XCP3e0G6WT414u5ELe6Y0vtp7kmSJ3F7YWObSNr1ESsgi4vw==" + } + } +} diff --git a/support/aphlict/server/package.json b/support/aphlict/server/package.json new file mode 100644 --- /dev/null +++ b/support/aphlict/server/package.json @@ -0,0 +1,13 @@ +{ + "name": "aphlict-server", + "version": "1.0.0", + "description": "Phorge's aphlict's server", + "main": "aphlict_server.js", + "directories": { + "lib": "lib" + }, + "license": "Apache-2.0", + "dependencies": { + "ws": "^7.5.0" + } +}