mirror of https://github.com/buster-so/buster.git
- Updated CLAUDE.md with architecture overview, row limit implementation notes, and troubleshooting guide. - Added additional documentation resources and common test commands. - Enhanced database test infrastructure guide with quick reference and common patterns. - Implemented password protection for public dashboards and metrics, including checks for access expiration and required passwords. - Updated relevant handlers and routes to support password parameters. - Refactored bulk update metrics handler to remove batch size from request structure. - Added tests for password protection and access control for metrics and dashboards. |
||
---|---|---|
.. | ||
src | ||
tests | ||
Cargo.toml | ||
README.md |
README.md
Buster Server
This directory contains the main server code for the Buster API. It provides the API endpoints, WebSocket handlers, and application logic for the Buster application.
Structure
src/
- Main server coderoutes/
- API endpoints (REST, WebSocket)utils/
- Shared utilitiestypes/
- Common type definitions
Development
To run the server in development mode:
# From the project root
make dev
# Or to run with faster feedback loop
make fast
Dependencies
The server depends on the following local libraries:
database
- Database access and modelshandlers
- Business logic handlersmiddleware
- HTTP middleware componentsquery_engine
- SQL query enginesharing
- Asset sharing functionalitysearch
- Search functionality
All dependencies are inherited from the workspace Cargo.toml.