cd ui/
curl -fsSL https://bun.sh/install | bash
# Manually add the directory to ~/.zshrc (or similar):
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
bun install
bun run dev
*open http://localhost:5173/
cd master/
./compile.sh
./bin/master
*open http://localhost:8080/
cd bot/
./compile.sh
./bin/bot
docker run -p 5173:5173 <ui_image>:<tag>
docker run --net=bridge -p 8080:8080 --name master <master_image>:<tag>
docker run --net=host --name bot_<no> <bot_image>:<tag>