Manage Tournament events - Scores, Tables, Groups and Public Views.
Don't like to use Terminal? Use the Native Desktop Application for managing Server instances on Windows, Linux and Mac OSx: TournamenterApp
View a Demo hosted @ heroku: Tournamenter DEMO
$ npm install -g tournamenter
$ tournamenter
Tournamenter is made for Organizers and the Public.
All the components of tournamenter allows to generate beautifull and configurable Live UI to show on TV's, Projectors and even Online. Management is restricted for Organizers.
But, we provide you with 'views': Customizable Presentations that renders real-time data for the public. Just like "Power Point" presentations, but dynamic and alive.
Manage Teams of your Event/People of your event. Create/Delete/Modify Team names and Country.
Manage Tables. Configure Scoring tables, customize ranking algorithm.
Manage Displays. Link multiple Groups, Tables, Messages and everything together for the public
Configurations are assigned by Environmental Variables.
-
PORT
: (default: 3000) Port the server will Bind to -
APP_UID
: (default: tournamenter) An identification (lowercase and no spaces) for the application. It's like a "namespace", and is used for database creation and connection. -
APP_NAME
: (default: tournamenter) Your application name. Usually, the name of the Event -
APP_LOGO
: (default: [internal_tournament_logo]) Absolute Path to the Logo. Prefer.png
files to ugly white backgrounds. -
PASSWORD
: (default: [none]) Set's the password required to login. (There is no username)
Tournamenter uses Waterline ORM. It allows file db (default) and even MongoDB, MySql...
Disk DB: Saves to a .json
file
DB_ADAPTER
: (default:sails-disk
)sails-disk
is already the default one. No need to changeDB_PATH
: (default:./tmp/[APP_UID].db
) Change this to reflect where the db file will be stored.
It DB_PATH
can be either:
- An Path to a Folder:
Will use file
DB_PATH/[APP_UID].db
as db (ex:~/
) - An Path to a File:
Will use file
DB_PATH
as db (ex:~/mydb.db
)
MongoDB: Connects to a MongoDB Server
DB_ADAPTER
: (default:sails-disk
) Set tosails-mongo
in order to change to MongoDBDB_URL
: An formated MongoDB URI (Go Here for information)
Tournamenter allows dynamic loading setup of Extensions. It only requires a list of PATH's to load.
Dependencies are NodeJS Modules. They are given hooks to inject and modify Tournamenter Behavior.
To Run tournamenter with an Exension, provide:
TOURNAMENTER_EXTENSIONS
: With a list of absolute paths, separated by:
or,
. Ex:~/myextensionA:~/myextB
Example 1 Running in PORT 4000, Setting LOGO and Changing name to
My Event
PORT=4000 APP_LOGO=~/event.png APP_NAME="My Event" tournamenter
Example 2 Running in PORT 4000, Use custom database path
PORT=4000 DB_PATH=~/myfolder/event.db tournamenter
Creator: Ivan Seidel