Deployment Guide¶
Overview¶
TODO
Deployment Server¶
This server runs the bot deployment platform. The server executes bot logic in parallel threads and handles interactions with the remote Token Ibis endpoint. It can be controlled by accessinghttp://localhost:portwith ibots.client from a different terminal.
usage: python -m ibots.server [-h] [-p PORT] [-s] [-l LEVEL]
[-b BOTS [BOTS ...]]
config endpoint
Positional Arguments¶
| config | JSON configuration file for the deployment |
| endpoint | Connection endpoint |
Named Arguments¶
| -p, --port | Port number at which this server can be accesse by the client Default: 8000 |
| -s, --std | Log to stdout Default: False |
| -l, --level | Set log level (CRITICAL|FATAL|ERROR|WARN|WARNING|INFO|DEBUG|NOTSET) Default: “INFO” |
| -b, --bots | List of bots to start. If empty, start all configured bots Default: [] |