max / makenotwork
- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
1 file changed,
+19 insertions,
-1 deletion
| @@ -53,8 +53,26 @@ | |||
| 53 | 53 | [targets.mnw.tls] | |
| 54 | 54 | host = "makenot.work" | |
| 55 | 55 | ||
| 56 | + | [targets.mnw.tests] | |
| 57 | + | # Present in prod's live /etc/pom/pom.toml and previously missing here, which | |
| 58 | + | # made this file unsafe to deploy: installing it would have silently dropped the | |
| 59 | + | # remote CI check from prod. Keep the two in step. | |
| 60 | + | ssh = "max@100.106.221.39" | |
| 61 | + | command = "/home/max/staging/run-ci.sh" | |
| 62 | + | timeout_secs = 600 | |
| 63 | + | staleness_days = 7 | |
| 64 | + | ||
| 56 | 65 | [targets.mnw.backups] | |
| 57 | - | directory = "/opt/makenotwork/backups" | |
| 66 | + | # Where the backups actually are, verified on prod 2026-07-29: the nightly job | |
| 67 | + | # writes /var/lib/mnw/backups/makenotwork/makenotwork-<date>.sql.gz. This said | |
| 68 | + | # /opt/makenotwork/backups, a path that does not exist on that host, so the | |
| 69 | + | # check reported the target degraded for a directory it could not find while the | |
| 70 | + | # real backups went unwatched. The app lives at /opt/mnw/current, not | |
| 71 | + | # /opt/makenotwork; the old path looks like a pre-rename leftover. | |
| 72 | + | # | |
| 73 | + | # pom matches files by the "<database>-" or "<database>_" prefix inside this | |
| 74 | + | # directory, so the directory is the per-database one, not its parent. | |
| 75 | + | directory = "/var/lib/mnw/backups/makenotwork" | |
| 58 | 76 | databases = ["makenotwork"] | |
| 59 | 77 | max_age_hours = 25 | |
| 60 | 78 | interval_secs = 3600 |