mirror of
https://github.com/myronblair/infra
synced 2026-06-30 17:50:10 -05:00
21 lines
568 B
Markdown
21 lines
568 B
Markdown
# DO Server Infrastructure
|
|
|
|
DigitalOcean server at 165.22.1.228 (CyberPanel / OpenLiteSpeed).
|
|
|
|
## Directory Structure
|
|
- `cron/` — Root crontab (CyberPanel + JARVIS entries)
|
|
- `systemd/` — Custom systemd service units
|
|
- `agent/` — JARVIS agent config template
|
|
|
|
## Deploy workflow
|
|
1. Edit code in site repos (myronblair/*)
|
|
2. `git push origin main`
|
|
3. On server: `cd /home/<site>/public_html && git pull origin main`
|
|
|
|
## JARVIS agent install
|
|
```bash
|
|
cp agent/config.json /opt/jarvis-agent/config.json
|
|
systemctl enable jarvis-agent
|
|
systemctl start jarvis-agent
|
|
```
|