Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 757 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 757 Bytes

Zenreader

Installation

Make sure to have git and node.js installed, and then type:

git clone https://github.com/niklasbuschmann/zenreader.git
cd zenreader
npm install --production
node server.js --port 8080

Users

The installation comes preconfigured for a single default user named user with an empty password. You can change this by editing users.json. Always use a reverse proxy that enforces https connections if there are any sensitive passwords.

Server

PM2 can be used to automatically launch on boot:

npm install pm2 -g
pm2 start server.js
pm2 save
pm2 startup