Skip to content

Latest commit

 

History

History
44 lines (25 loc) · 1013 Bytes

README.md

File metadata and controls

44 lines (25 loc) · 1013 Bytes

Tournament Server

npm version

Game-agnostic tournament server

Run

An online version of this server is always running at server.socialgorithm.org, deployed using DigitalOcean.

To run locally:

$ npx @socialgorithm/tournament-server -h

tournament-server v10.0.0

  Socialgorithm Tournament Server

Options

...

Developer Guide

Clone the repo locally and run npm install. Once dependencies are installed you can run:

$ npm run start:dev

This will run the typescript compiler and start the server, restarting the server whenever a file changes.

Debugging

The server uses the debug library to aid debugging. Simply run:

DEBUG=sg:* npm run start:dev

This will enable verbose logging of Socialgorithm related messages (use * to log everything).