First build

This commit is contained in:
qixinbo
2026-03-14 15:44:48 +08:00
parent 630d57a5cb
commit fb9c0906b5
145 changed files with 25148 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
# DataClaw
Data Analysis Platform.
## Structure
- `backend/`: FastAPI backend
- `frontend/`: React frontend (Vite + TailwindCSS + Shadcn UI)
- `nanobot/`: Core AI agent framework
## Setup
### Backend
```bash
cd backend
pip install -r requirements.txt
uvicorn main:app --reload
```
### Frontend
```bash
cd frontend
npm install
npm run dev
```