Documentation

Production Deployment

Deploy the backend service to production

Deployment Options

PM2

pm2 start npm --name cylend-service -- start

Docker

docker build -t cylend-service .
docker run -d cylend-service
Important

Use a secrets manager (AWS Secrets Manager, Vault) for OWNER_PRIVATE_KEY in production.

Environment Checklist

  • ✓ Production RPC URLs configured
  • ✓ OWNER_PRIVATE_KEY secured
  • ✓ Ponder API accessible
  • ✓ Monitoring/logging enabled

Related