Pixelbank is a simpel server-client balance system. It's heavily inspired by revbank.
For the server nodejs is needed. Clients can be written in any language. An example client is included which is also written in nodejs.
Run the following commands to build the server
cd server
npm build
An out
directory will be created. This and the node_modules
folder can be run on the target machine by running node out/index.js
This entire process can be simplified by running
cd server
npm build_and_start
which combines the above steps in one.