-
Notifications
You must be signed in to change notification settings - Fork 1
Setup Guide
SiseTV requires Node.js to run. After installing it, navigate to the installation folder and use
npm install
to install all the required dependencies.
To run the server, use
node bin/www.js [port]
You can optionally specify a port to run the server on if you need to run multiple servers on the same machine. If you do not specify a port, it will default to 3000.
After running the server for the first time you will be created an admin account:
Username: admin
Password: admin
Open up the administration interface by going to (assuming port is 3000) http://localhost:3000/admin. You will be prompted to change your password on your first login. After that you are good to go!
If you've forgotten the admin account password (or just want to change it for some reason), you can use the following command:
node app/pwchange.js [new password]
After that restart the server.