A simple server for local self-written games and bots in the form of modules with Docker and Web-implementation
git clone https://github.com/PrefectSol/BotHub.git
cd BotHub
make build
make host
- The file
host-config.json
is used for configuration
make client
- The file
client-config.json
is used for configuration
- For create bot for game you need write some file
bot.py
thats realize abstract classBot
- For add new game you need add new project in
hub/
with your class implementation of the abstract classGame
make clear