Phase 1 of task management consolidation (per Gemini consultation). Added standardized frontmatter with: - status: open | blocked | complete - priority: P1 | P2 | P3 | P4 - owner: Michael | Meg | Holly - created: YYYY-MM-DD Final counts: - 39 open tasks - 17 complete tasks - 1 blocked task Metadata extracted from existing inline markdown and audit results. Ready for Phase 2: 11ty mobile index generation. Chronicler #69
67 lines
1.4 KiB
Markdown
67 lines
1.4 KiB
Markdown
---
|
|
status: open
|
|
priority: P1
|
|
owner: Michael
|
|
created: 2026-01-01
|
|
---
|
|
|
|
# Command Center Root Cleanup
|
|
|
|
**Status:** Ready
|
|
**Owner:** Michael "Frostystyle" Krause
|
|
**Priority:** Tier 0 - Immediate Win
|
|
**Last Updated:** 2026-02-16
|
|
**Time Estimate:** 15 minutes
|
|
|
|
---
|
|
|
|
## Overview
|
|
|
|
Housekeeping task to clean up Command Center root directory before major infrastructure work. Organizes Gitea backups, archives deployment logs, and removes obsolete files.
|
|
|
|
---
|
|
|
|
## Procedure
|
|
|
|
### Move Gitea Backups
|
|
```bash
|
|
ssh root@63.143.34.217
|
|
mkdir -p /root/backups/gitea
|
|
mv /root/gitea-backup-20260208-* /root/backups/gitea/
|
|
mv /root/gitea-data-20260209.tar.gz /root/backups/gitea/
|
|
mv /root/gitea-db-20260209.sql /root/backups/gitea/
|
|
mv /root/gitea-db-full.sql /root/backups/gitea/
|
|
mv /root/gitea-migration-manifest.txt /root/backups/gitea/
|
|
```
|
|
|
|
### Archive Deployment Logs
|
|
Commit these files to `docs/deployment-logs/` in Git:
|
|
- `wiki-deployment-logs-feb10.txt`
|
|
- `wiki-deployment-summary.txt`
|
|
|
|
### Delete Obsolete Files
|
|
```bash
|
|
rm -f /root/dead.letter
|
|
rm -f /root/extract-key-info.sh
|
|
rm -f /root/master
|
|
```
|
|
|
|
### Verify
|
|
```bash
|
|
ls -la /root/
|
|
# Should be clean, only active files remain
|
|
```
|
|
|
|
---
|
|
|
|
## Success Criteria
|
|
|
|
- ✅ All Gitea backups in `/root/backups/gitea/`
|
|
- ✅ Deployment logs archived in Git repo
|
|
- ✅ Cruft files deleted
|
|
- ✅ Root directory clean and organized
|
|
|
|
---
|
|
|
|
**Fire + Frost + Foundation = Where Love Builds Legacy** 💙🔥❄️
|