From b324d67a314671521531d38b8d21fda559d45b80 Mon Sep 17 00:00:00 2001 From: rob Date: Mon, 12 Jan 2026 10:38:08 -0400 Subject: [PATCH] Update before docs deploy --- CLAUDE.md | 20 ++++++++++++++++++++ Dockerfile | 1 - 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index dbf6bfb..5bb9cd0 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -114,3 +114,23 @@ python -m cmdforge.web.app # Production (example) CMDFORGE_REGISTRY_DB=/path/to/db PORT=5050 python -m cmdforge.web.app ``` + +## Infrastructure Documentation + +For deployment, server details, and operations, see the `docs/` folder: + +- **docs/servers.md** - Server IPs (192.168.0.162), SSH access, paths, service commands +- **docs/deployment.md** - Architecture diagram, deploy process, systemd service config +- **docs/maintenance.md** - Backups, updates, troubleshooting +- **docs/architecture.md** - Module structure, data flow diagrams + +### Production Server Quick Reference + +| Property | Value | +|----------|-------| +| Server | 192.168.0.162 (OpenMediaVault) | +| SSH | `ssh rob@192.168.0.162` | +| App Path | `/srv/mergerfs/data_pool/home/rob/cmdforge-registry/` | +| Service | `systemctl --user status cmdforge-web` | +| Public URL | https://cmdforge.brrd.tech | +| Port | 5050 (via Cloudflare tunnel) | diff --git a/Dockerfile b/Dockerfile index 542e948..77f230d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,6 @@ WORKDIR /app COPY pyproject.toml README.md ./ COPY src/ ./src/ COPY examples/ ./examples/ -COPY docs/ ./docs/ COPY tests/ ./tests/ # Install CmdForge and all dependencies (CLI, TUI, registry)