25 lines
467 B
Markdown
25 lines
467 B
Markdown
# 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
|
|
```
|
|
|