https://github.com/ajfisher/tourney-tools
Tools for tournament match ups (eg sumo bot battle sessions)
https://github.com/ajfisher/tourney-tools
brackets nodejs pools tournament-manager
Last synced: 2 months ago
JSON representation
Tools for tournament match ups (eg sumo bot battle sessions)
- Host: GitHub
- URL: https://github.com/ajfisher/tourney-tools
- Owner: ajfisher
- License: mit
- Created: 2017-05-28T04:51:14.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-07-11T11:30:05.000Z (almost 2 years ago)
- Last Synced: 2025-03-18T17:57:25.506Z (2 months ago)
- Topics: brackets, nodejs, pools, tournament-manager
- Language: JavaScript
- Homepage: http://bout.haus/
- Size: 393 KB
- Stars: 8
- Watchers: 3
- Forks: 1
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tourney match maker tools
Makes a tournament of teams dealing with things like match making, leader
boards and pool divisions as well as elimination to find a winning team.## Structure:
```
- api
|- docs - documentation for the API in swagger files
|- server - test server that can run the API.
|- handlers - handler modules for the API server
|- package.json - package dependencies to run all of the API server
- server
|- tests - tests specific to the server
|- package.json - package dependencies to run all of the server
- app
|- build - build files to be deployed to the server
|- src
| |- components - component files
| | |- - individual component items
| | |- index.js - component class
| | |- style.css - styles appropriate to the component
| | |- test.js - component tests
| |- index.js - entry point
| |- index.css - top level css
| |- registerServiceWorker.js - make available via SW
| |- views - view definitions TBA
|- public
|- index.htm - entry point for the bootstrapper
- utils - tools for the project to use
```