Project Structure
Directory Layout
sand-framework/
├── api_gateway/ # FastAPI application
│ ├── routes/ # API endpoints
│ ├── middleware/ # Request middleware
│ └── core/ # Core configurations
│
├── agents/ # AI and Analytics agents
│ ├── ai_service/ # AI development assistant
│ ├── analytics/ # Price and sentiment analysis
│ └── contract/ # Smart contract analysis
│
├── bot/ # Discord bot integration
│ ├── cogs/ # Bot commands
│ └── handlers/ # Event handlers
│
├── common/ # Shared utilities
│ ├── database/ # Database models
│ ├── cache/ # Caching utilities
│ └── security/ # Security utilities
│
├── tests/ # Test suite
│ ├── unit/ # Unit tests
│ └── integration/ # Integration tests
│
├── docs/ # Documentation
├── scripts/ # Utility scripts
└── docker/ # Docker configurationsKey Components
Configuration Files
Module Dependencies
Adding New Features
Code Style
Last updated