Fully customizable Faucet built on NodeJS, Express 3, and Bootstrap.
Based on original code from cryptofaucet-node
Set global configuration options in config.js
npm install
This will install all the necessary dependencies
node app.js
Or using forever:
forever start app.js
Or with systemd (Linux only):
[Unit]
Description=Radiant Faucet Daemon
After=network.target
[Service]
WorkingDirectory=/PATH_TO_FAUCET
User=root
Group=root
Type=simple
ExecStart=node /PATH_TO_FAUCET/app.js
Restart=on-failure
RestartSec=5s
PrivateTmp=true
[Install]
WantedBy=multi-user.target