@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add package.json for aphlict

Summary: This makes the whole setup easier, future proof and reproducible.

Test Plan:
cd support/aphlict/server/
npm install

See that ws gets installed as expected.

Reviewers: O1 Blessed Committers, Matthew

Reviewed By: O1 Blessed Committers, Matthew

Subscribers: Matthew, Ekubischta, speck, tobiaswiese

Maniphest Tasks: T15019

Differential Revision: https://we.phorge.it/D25006

+27 -3
+3 -3
src/docs/user/configuration/notifications.diviner
··· 41 41 To install Node.js, follow the instructions on 42 42 [[ http://nodejs.org | nodejs.org ]]. 43 43 44 - You will also need to install the `ws` module for Node. This needs to be 44 + You will also need to install the dependencies for Node. This needs to be 45 45 installed into the notification server directory: 46 46 47 47 phorge/ $ cd support/aphlict/server/ 48 - phorge/support/aphlict/server/ $ npm install ws 48 + phorge/support/aphlict/server/ $ npm install 49 49 50 - Once Node.js and the `ws` module are installed, you're ready to start the 50 + Once Node.js and its dependencies are installed, you're ready to start the 51 51 server. 52 52 53 53
+12
support/aphlict/server/package-lock.json
··· 1 + { 2 + "name": "aphlict-server", 3 + "requires": true, 4 + "lockfileVersion": 1, 5 + "dependencies": { 6 + "ws": { 7 + "version": "7.5.0", 8 + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.0.tgz", 9 + "integrity": "sha512-6ezXvzOZupqKj4jUqbQ9tXuJNo+BR2gU8fFRk3XCP3e0G6WT414u5ELe6Y0vtp7kmSJ3F7YWObSNr1ESsgi4vw==" 10 + } 11 + } 12 + }
+12
support/aphlict/server/package.json
··· 1 + { 2 + "name": "aphlict-server", 3 + "description": "Phorge's aphlict's server", 4 + "main": "aphlict_server.js", 5 + "directories": { 6 + "lib": "lib" 7 + }, 8 + "license": "Apache-2.0", 9 + "dependencies": { 10 + "ws": "^7.5.0" 11 + } 12 + }