From b4360487b9394d4eeb92c4aa6412a1ddb6f031d3 Mon Sep 17 00:00:00 2001 From: Phillip Tarrant Date: Fri, 14 Nov 2025 00:09:54 -0600 Subject: [PATCH] Reorganize documentation into docs/ folder structure Move documentation files into organized folder structure: - docs/ai/ - Documentation generated by development tools - docs/human/ - Manual notes and testing documentation Files moved: - PHASE1_COMPLETE.md -> docs/ai/PHASE1_COMPLETE.md - ROADMAP.md -> docs/ai/ROADMAP.md --- PHASE1_COMPLETE.md => docs/ai/PHASE1_COMPLETE.md | 0 ROADMAP.md => docs/ai/ROADMAP.md | 0 docs/human/phase1-manual-test.md | 11 +++++++++++ 3 files changed, 11 insertions(+) rename PHASE1_COMPLETE.md => docs/ai/PHASE1_COMPLETE.md (100%) rename ROADMAP.md => docs/ai/ROADMAP.md (100%) create mode 100644 docs/human/phase1-manual-test.md diff --git a/PHASE1_COMPLETE.md b/docs/ai/PHASE1_COMPLETE.md similarity index 100% rename from PHASE1_COMPLETE.md rename to docs/ai/PHASE1_COMPLETE.md diff --git a/ROADMAP.md b/docs/ai/ROADMAP.md similarity index 100% rename from ROADMAP.md rename to docs/ai/ROADMAP.md diff --git a/docs/human/phase1-manual-test.md b/docs/human/phase1-manual-test.md new file mode 100644 index 0000000..a8c90cd --- /dev/null +++ b/docs/human/phase1-manual-test.md @@ -0,0 +1,11 @@ +# Install dependencies + pip install -r requirements-web.txt + +# Initialize database +python3 init_db.py --password yourpassword + +# Run Flask app +python3 -m web.app + +# Test Settings API +curl http://localhost:5000/api/settings/health \ No newline at end of file