A server implementation of Tom's live chess viewer. Designed to work with Graham Bank's CCRL broadcasts. Watch live at https://ccrl.live!
- Your own Tom's live chess server
- I do not know how TLCS is setup as I do not host any broadcasts myself
- Node.JS
- pm2 if you'd like to run this in the background
- Create a base config in
config/config.json. - It should be of the form:
{ connections: string[] }where each string is<host>:<port> - Create a
.envfile at the same level as thisREADMEand specify aTLCV_PASSWORD
# .env
TLCV_PASSWORD=passwordnpm install && npm run build- Launches on port 8080
node build/src/main.js # runs in foreground
# or
pm2 start build/src/main.js # runs in background- Admin panel can be accessed at
/admin- Username is
admin - Password is specified by the
TLCV_PASSWORDenvironment variable (see above)
- Username is
