Files
wiseclaw/backend/README.md

18 lines
358 B
Markdown

# WiseClaw Backend
FastAPI service for WiseClaw. The backend now includes:
- SQLite persistence through SQLAlchemy
- runtime/admin settings endpoints
- LM Studio integration status endpoint
- Telegram polling runtime scaffold
## Run locally
```bash
python3.12 -m venv .venv312
source .venv312/bin/activate
pip install .
uvicorn app.main:app --reload
```