You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Mark van Renswoude ab72081467 Fixed import for case-sensitive systems 4 years ago
emails Implemented changing code ownership 6 years ago
lib Updated ALL the packages! 4 years ago
public Fixed import for case-sensitive systems 4 years ago
stuff Changed logo to be only slightly less cringy 6 years ago
.babelrc Updated ALL the packages! 4 years ago
.gitignore Added code and upload expiration checks 6 years ago
README.md Changed config from example to defaults file, merged with config.js 6 years ago
Recv.sublime-project Initial commit 6 years ago
config.defaults.js Added code and upload expiration checks 6 years ago
index.js Fixed 'forbidden' on /admin 6 years ago
package-lock.json Updated ALL the packages! 4 years ago
package.json Updated ALL the packages! 4 years ago
webpack.config.js Updated ALL the packages! 4 years ago

README.md

Installation

Copy config.defaults.js to config.js and change as required. Any settings left out will use the value from config.defaults.js.

To build the production version:

npm run build

Service on Linux (systemd)

/etc/systemd/system/recv.service:

[Unit]
Description=Recv

[Service]
ExecStart=/usr/bin/node /srv/recv/index.js
WorkingDirectory=/srv/recv
Restart=always
RestartSec=10                       # Restart service after 10 seconds if node service crashes
StandardOutput=syslog               # Output to syslog
StandardError=syslog                # Output to syslog
SyslogIdentifier=recv
User=recv

[Install]
WantedBy=multi-user.target
systemctl enable recv.service
systemctl start recv.service