# NeuralAPI **Repository Path**: alexfengfeng/neural-api ## Basic Information - **Project Name**: NeuralAPI - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-11-14 - **Last Updated**: 2025-11-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # NeuralAPI SaaS Platform Multi-tenant AI API management platform built with modern web technologies. ## 🚀 Quick Start (Windows 11) ### Prerequisites - Node.js 18+ - pnpm 8+ - MongoDB 6+ - Redis 6+ (via WSL2) - Git ### Installation ```powershell # Install dependencies pnpm install # Initialize development environment pnpm run init:project # Start development servers pnpm dev ``` ## 📁 Project Structure ``` neuralapi/ ├── backend/ # Fastify + MongoDB API ├── frontend/ # Next.js + React UI ├── docs/ # Documentation ├── scripts/ # Automation scripts ├── k8s/ # Kubernetes manifests └── docker-compose.yml # Docker configuration ``` ## 🛠️ Development ### CLI-First Development ```bash # Generate models pnpm generate:model User --fields="email:string,required,unique" # Generate routes pnpm generate:route auth --methods="POST,GET" # Generate components pnpm generate:component Button --variant="primary,secondary" ``` ### Environment Setup ```powershell # Backend environment cd backend pnpm dev # Frontend environment cd frontend pnpm dev ``` ## 📖 Documentation See [docs/NeuralAPI_完整方案文档.md](./docs/NeuralAPI_完整方案文档.md) for complete documentation. ## 🔧 Development Rules This project follows CLI-first, automation-generated development principles. See `.claude/` directory for detailed development rules and instructions.