GitHub

On this page

Infrastructure

Operational documentation for Orcta production infrastructure and deployment workflows.

Core Docs

Security

Services

Service URL Port Purpose
Orcta Runtime runtime.orctatech.com 9010 Deployment automation
LogDeck logdeck.orctatech.com 8123 Log monitoring
Vault vault.orctatech.com 8200 Secrets management
PSS pss.orctatech.com 3000 PSS frontend
AMES ames.orctatech.com 3002 AMES frontend
Waybills waybills.orctatech.com 3000 Waybills frontend

Monitoring

Lookout (Server Monitoring)

  • Status: Running as systemd service
  • Config: /etc/lookout/config.yaml
  • Monitors: CPU, memory, disk, Docker containers, TCP services
  • Checks: Orcta Runtime health, Postgres, Redis, Valkey, PgBouncer

LogDeck (Log Monitoring)

  • URL: https://logdeck.orctatech.com
  • Features: Real-time log streaming, alerting, container management
  • Integration: Sends alerts to Orcta Runtime via webhook

Orcta Runtime (Deployment Automation)

  • URL: https://runtime.orctatech.com
  • Features: Multi-app deploys, GitHub webhooks, health checks, rollback
  • Dashboard: https://runtime.orctatech.com/login

Quick Reference

# SSH to VPS (via Tailscale)
ssh bernard@100.125.3.44

# Check all containers
docker ps --format 'table {{.Names}}\t{{.Status}}\t{{.Ports}}'

# Check Orcta Runtime health
curl -s http://localhost:9010/health

# Check Lookout status
journalctl -u lookout -f

# Check Caddy logs
journalctl -u caddy --no-pager -n 50

# Vault operations
vault status
vault login -method=userpass username=cto password='your-password'
vault kv get secret/orcta/pss/database
Edit this page
Last modified: 2026-08-03