fetch_ml/cmd/api-server/README.md
Jeremie Fraeys 803677be57 feat: implement Go backend with comprehensive API and internal packages
- Add API server with WebSocket support and REST endpoints
- Implement authentication system with API keys and permissions
- Add task queue system with Redis backend and error handling
- Include storage layer with database migrations and schemas
- Add comprehensive logging, metrics, and telemetry
- Implement security middleware and network utilities
- Add experiment management and container orchestration
- Include configuration management with smart defaults
2025-12-04 16:53:53 -05:00

32 lines
620 B
Markdown

# API Server
WebSocket API server for the ML CLI tool...
## Usage
```bash
./bin/api-server --config configs/config-dev.yaml --listen :9100
```
## Endpoints
- `GET /health` - Health check
- `WS /ws` - WebSocket endpoint for CLI communication
## Binary Protocol
See [CLI README](../../cli/README.md#websocket-protocol) for protocol details.
## Configuration
Uses the same configuration file as the worker. Experiment base path is read from `base_path` configuration key.
## Example
```bash
# Start API server
./bin/api-server --listen :9100
# In another terminal, test with CLI
./cli/zig-out/bin/ml status
```