Skip to content

Deployment

Deploy PolyBot in production environments.

Deployment Options

The simplest production deployment:

docker compose up -d

Docker deployment guide

Kubernetes

For scalable deployments:

  • Helm chart available
  • Horizontal scaling
  • Secret management

Kubernetes guide

Manual

For custom setups:

pip install polybot-trader
polybot start

Production Checklist

  • Enable authentication (AUTH_ENABLED=true)
  • Set secure JWT secret
  • Configure risk limits
  • Set up monitoring
  • Configure backups
  • Review security settings

Monitoring

PolyBot exposes Prometheus metrics at /metrics:

  • Request latency
  • Order counts
  • Position values
  • Strategy performance

Monitoring guide

Security

Production security considerations:

  • API authentication
  • Network isolation
  • Secret management
  • Audit logging

Security guide