@identity-box/box-office
v0.1.42
Published
Dispatching service for Identity Box
Maintainers
Readme
Box Office
A service to handle identity requests on IdBox.
Since version
0.1.38all Identity Box services are ESM-only. No building is required.
Installation
On your identity-box, first create a folder where you want your service to be installed (we recommend that you use the name of the service as the name of the folder). Then install the service as follows:
$ npx github:/identity-box/cli install-service box-officeUsage
To directly run the service, use:
yarn box-office startWith PM2
You can take of advantage of pm2 to start an identity-box service. Make sure you have pm2 installed globally:
$ npm install pm2 -gStart service
$ pm2 start ecosystem.config.cjsList all services
$ pm2 listSettings on a service
$ pm2 show box-officeLogs
To show both stdout and stderr logs run:
$ pm2 logs box-officeThis shows all the logs of box-office and outputs the last 15 lines (the default).
To see only standard output logs, and print more lines from the output use:
$ pm2 logs box-office --out --lines 150Restart process after editing ecosystem
$ pm2 delete ecosystem.config.cjs
$ pm2 start ecosystem.config.cjs