Update before docs deploy
This commit is contained in:
parent
9fbe45244d
commit
b324d67a31
20
CLAUDE.md
20
CLAUDE.md
|
|
@ -114,3 +114,23 @@ python -m cmdforge.web.app
|
||||||
# Production (example)
|
# Production (example)
|
||||||
CMDFORGE_REGISTRY_DB=/path/to/db PORT=5050 python -m cmdforge.web.app
|
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) |
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,6 @@ WORKDIR /app
|
||||||
COPY pyproject.toml README.md ./
|
COPY pyproject.toml README.md ./
|
||||||
COPY src/ ./src/
|
COPY src/ ./src/
|
||||||
COPY examples/ ./examples/
|
COPY examples/ ./examples/
|
||||||
COPY docs/ ./docs/
|
|
||||||
COPY tests/ ./tests/
|
COPY tests/ ./tests/
|
||||||
|
|
||||||
# Install CmdForge and all dependencies (CLI, TUI, registry)
|
# Install CmdForge and all dependencies (CLI, TUI, registry)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue