docs: add COMPONENT.md to all 18 components and README.md to 3 missing repos

This commit is contained in:
2026-07-07 16:23:57 +02:00
parent d2790ff9a1
commit 2e35796f37
21 changed files with 363 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
# OrgMyLife
Personal task, call, and digest coordination system.
## Stack
- Backend: FastAPI + PostgreSQL
- Deployment: VPS Docker (port 8000)
- MCP: Local stdio server for Kiro integration
## API
- Endpoint: https://api.andreknie.de
- Tasks: GET /api/tasks, POST /api/tasks
- Projects: GET/PUT /api/projects, POST /api/projects/create
- Agent filter: ?filter_agent=true
## Development
```bash
pip install -r requirements.txt
uvicorn main:app --reload
```