hunterLee666/deerflow2.0-project

19

stars

5

commits

Python

primary language

Mar 24, 2026

updated

README

DeerFlow 2.0 Project

Python FastAPI Next.js License

This repository contains a comprehensive collection of DeerFlow 2.0 resources, including example cases, a full-stack enterprise application, and architectural documentation.

๐Ÿ“ Repository Structure

deerflow2.0-project/
โ”œโ”€โ”€ deerflow-demo/              # DeerFlow 2.0 Example Cases
โ”‚   โ”œโ”€โ”€ examples/               # 23 complete example files
โ”‚   โ”‚   โ”œโ”€โ”€ case01_basic_usage.py
โ”‚   โ”‚   โ”œโ”€โ”€ case02_advanced_config.py
โ”‚   โ”‚   โ”œโ”€โ”€ case03_fastapi_integration.py
โ”‚   โ”‚   โ”œโ”€โ”€ case04_multi_agent.py
โ”‚   โ”‚   โ”œโ”€โ”€ case05_websocket_chat.py
โ”‚   โ”‚   โ”œโ”€โ”€ case06_mcp_config.py
โ”‚   โ”‚   โ”œโ”€โ”€ case07_database_integration.py
โ”‚   โ”‚   โ”œโ”€โ”€ case08_file_upload.py
โ”‚   โ”‚   โ”œโ”€โ”€ case09_custom_tool.py
โ”‚   โ”‚   โ”œโ”€โ”€ case10_task_scheduler.py
โ”‚   โ”‚   โ”œโ”€โ”€ case11_memory_system.py
โ”‚   โ”‚   โ”œโ”€โ”€ case12_multimodal.py
โ”‚   โ”‚   โ”œโ”€โ”€ case13_api_gateway.py
โ”‚   โ”‚   โ”œโ”€โ”€ case14_monitoring.py
โ”‚   โ”‚   โ”œโ”€โ”€ case15_ab_testing.py
โ”‚   โ”‚   โ”œโ”€โ”€ case16_cache_optimization.py
โ”‚   โ”‚   โ”œโ”€โ”€ case17_distributed.py
โ”‚   โ”‚   โ”œโ”€โ”€ case18_data_pipeline.py
โ”‚   โ”‚   โ”œโ”€โ”€ case19_security.py
โ”‚   โ”‚   โ”œโ”€โ”€ case20_performance.py
โ”‚   โ”‚   โ”œโ”€โ”€ case21_testing.py
โ”‚   โ”‚   โ”œโ”€โ”€ case22_cicd.py
โ”‚   โ”‚   โ””โ”€โ”€ case23_kubernetes.py
โ”‚   โ””โ”€โ”€ README.md               # Examples documentation
โ”‚
โ”œโ”€โ”€ deerflow-enterprise-project/ # Full-Stack Enterprise Application
โ”‚   โ”œโ”€โ”€ backend/                # FastAPI Backend
โ”‚   โ”‚   โ”œโ”€โ”€ app/               # Application layer
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ api/v1/        # API routes (auth, agents, tasks, memory...)
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ models/        # SQLAlchemy models
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ services/      # Business logic
โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ core/          # Configuration & database
โ”‚   โ”‚   โ”œโ”€โ”€ packages/harness/  # DeerFlow 2.0 harness
โ”‚   โ”‚   โ”œโ”€โ”€ alembic/           # Database migrations
โ”‚   โ”‚   โ”œโ”€โ”€ tests/             # Test suite
โ”‚   โ”‚   โ”œโ”€โ”€ Dockerfile
โ”‚   โ”‚   โ””โ”€โ”€ requirements.txt
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ frontend/               # Next.js Frontend
โ”‚   โ”‚   โ”œโ”€โ”€ src/app/           # Pages (Dashboard, Agents, Tasks, Memory...)
โ”‚   โ”‚   โ”œโ”€โ”€ src/components/    # UI components (Shadcn UI)
โ”‚   โ”‚   โ”œโ”€โ”€ src/lib/api/       # API clients & hooks
โ”‚   โ”‚   โ”œโ”€โ”€ Dockerfile
โ”‚   โ”‚   โ””โ”€โ”€ package.json
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ docker-compose.yml      # Complete Docker orchestration
โ”‚   โ”œโ”€โ”€ README.md               # Project documentation
โ”‚   โ”œโ”€โ”€ CLAUDE.md               # Development guide
โ”‚   โ””โ”€โ”€ docs/                   # Additional documentation
โ”‚
โ”œโ”€โ”€ DEERFLOW2.0_ARCHITECTURE.md # Architecture documentation
โ”œโ”€โ”€ CLAUDE.md                   # Development guidelines
โ””โ”€โ”€ README.md                   # This file

๐Ÿš€ Quick Start

cd deerflow-enterprise-project

# Start all services with Docker Compose
docker-compose up -d

# Access the application
# Frontend: http://localhost:3000
# Backend API: http://localhost:8000
# API Docs: http://localhost:8000/docs

Option 2: Explore Example Cases

cd deerflow-demo

# View the examples
cat examples/case01_basic_usage.py
cat examples/case04_multi_agent.py

# Read the documentation
cat README.md

๐Ÿ“š Contents

1. deerflow-demo - Example Cases

23 complete, runnable examples demonstrating DeerFlow 2.0 capabilities:

CaseTopicDescription
01Basic UsageClient initialization and basic operations
02Advanced ConfigConfiguration management and environment setup
03FastAPI IntegrationBuilding REST APIs with DeerFlow
04Multi-AgentMulti-agent collaboration patterns
05WebSocket ChatReal-time chat implementation
06MCP ConfigMulti-Client Protocol configuration
07DatabaseDatabase integration with SQLAlchemy
08File UploadFile processing and handling
09Custom ToolBuilding custom tools for agents
10Task SchedulerTask scheduling and workflow automation
11Memory SystemLong-term memory implementation
12MultimodalMultimodal content generation
13API GatewayAPI gateway design patterns
14MonitoringMonitoring, logging, and alerting
15A/B TestingA/B testing for AI systems
16Cache OptimizationCaching strategies
17DistributedDistributed deployment
18Data PipelineData pipeline and ETL
19SecuritySecurity hardening
20PerformancePerformance optimization
21TestingTesting strategies
22CI/CDCI/CD with GitHub Actions
23KubernetesKubernetes deployment

2. deerflow-enterprise-project - Full-Stack Application

A production-ready enterprise AI agent system with:

Backend (FastAPI):

  • โœ… Complete REST API with JWT authentication
  • โœ… Agent management (CRUD operations)
  • โœ… Task management with status tracking
  • โœ… Memory system for long-term context
  • โœ… Thread/conversation management
  • โœ… PostgreSQL database with SQLAlchemy ORM
  • โœ… Alembic database migrations
  • โœ… DeerFlow 2.0 harness integration

Frontend (Next.js):

  • โœ… Modern React with TypeScript
  • โœ… Shadcn UI component library
  • โœ… Tailwind CSS styling
  • โœ… React Query for data fetching
  • โœ… Protected routes with authentication
  • โœ… Dashboard with statistics
  • โœ… Agent management interface
  • โœ… Task management UI
  • โœ… Memory browser
  • โœ… Real-time chat interface

Infrastructure:

  • โœ… Docker Compose with PostgreSQL, Redis, Backend, Frontend
  • โœ… Environment configuration
  • โœ… CORS and security settings

๐Ÿ—๏ธ Architecture

Full-Stack Architecture

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚           Frontend Layer                โ”‚
โ”‚  Next.js 16 + React 19 + TypeScript 5   โ”‚
โ”‚  React Query 5 + Tailwind CSS 4         โ”‚
โ”‚  Shadcn UI + Radix UI                   โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
             โ”‚ HTTP / WebSocket
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚           API Gateway Layer             โ”‚
โ”‚  FastAPI 0.109 + JWT Auth + CORS        โ”‚
โ”‚  Pydantic 2.5 + Python 3.12             โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
             โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚         Service Layer                   โ”‚
โ”‚  Business Logic + DeerFlow Harness      โ”‚
โ”‚  Agent, Task, Memory Services           โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
             โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚         Data Layer                      โ”‚
โ”‚  PostgreSQL 15 + SQLAlchemy 2.0         โ”‚
โ”‚  Redis 7 + Alembic Migrations           โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

๐Ÿ“– Documentation

๐Ÿ› ๏ธ Technology Stack

Backend

  • Python 3.12+
  • FastAPI 0.109+ - Web framework
  • SQLAlchemy 2.0+ - ORM
  • PostgreSQL 15+ - Database
  • Redis 7+ - Cache
  • DeerFlow 2.0 - AI Agent framework

Frontend

  • Next.js 16+
  • React 19+
  • TypeScript 5+
  • Tailwind CSS 4+
  • Shadcn UI - Component library
  • React Query 5+ - Data fetching

Infrastructure

  • Docker & Docker Compose
  • Nginx (optional)
  • Kubernetes (optional)

๐Ÿค Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

๐Ÿ“„ License

This project is licensed under the MIT License.

๐Ÿ™ Acknowledgments


Version: 0.1.0
Last Updated: 2026-03-16
Status: โœ… Complete with Examples + Enterprise Application

Contributors

hunterLee666

5 commits

hunterLee666/deerflow2.0-project

19

stars

5

commits

Python

primary language

Mar 24, 2026

updated

README

DeerFlow 2.0 Project

Python FastAPI Next.js License

This repository contains a comprehensive collection of DeerFlow 2.0 resources, including example cases, a full-stack enterprise application, and architectural documentation.

๐Ÿ“ Repository Structure

deerflow2.0-project/
โ”œโ”€โ”€ deerflow-demo/              # DeerFlow 2.0 Example Cases
โ”‚   โ”œโ”€โ”€ examples/               # 23 complete example files
โ”‚   โ”‚   โ”œโ”€โ”€ case01_basic_usage.py
โ”‚   โ”‚   โ”œโ”€โ”€ case02_advanced_config.py
โ”‚   โ”‚   โ”œโ”€โ”€ case03_fastapi_integration.py
โ”‚   โ”‚   โ”œโ”€โ”€ case04_multi_agent.py
โ”‚   โ”‚   โ”œโ”€โ”€ case05_websocket_chat.py
โ”‚   โ”‚   โ”œโ”€โ”€ case06_mcp_config.py
โ”‚   โ”‚   โ”œโ”€โ”€ case07_database_integration.py
โ”‚   โ”‚   โ”œโ”€โ”€ case08_file_upload.py
โ”‚   โ”‚   โ”œโ”€โ”€ case09_custom_tool.py
โ”‚   โ”‚   โ”œโ”€โ”€ case10_task_scheduler.py
โ”‚   โ”‚   โ”œโ”€โ”€ case11_memory_system.py
โ”‚   โ”‚   โ”œโ”€โ”€ case12_multimodal.py
โ”‚   โ”‚   โ”œโ”€โ”€ case13_api_gateway.py
โ”‚   โ”‚   โ”œโ”€โ”€ case14_monitoring.py
โ”‚   โ”‚   โ”œโ”€โ”€ case15_ab_testing.py
โ”‚   โ”‚   โ”œโ”€โ”€ case16_cache_optimization.py
โ”‚   โ”‚   โ”œโ”€โ”€ case17_distributed.py
โ”‚   โ”‚   โ”œโ”€โ”€ case18_data_pipeline.py
โ”‚   โ”‚   โ”œโ”€โ”€ case19_security.py
โ”‚   โ”‚   โ”œโ”€โ”€ case20_performance.py
โ”‚   โ”‚   โ”œโ”€โ”€ case21_testing.py
โ”‚   โ”‚   โ”œโ”€โ”€ case22_cicd.py
โ”‚   โ”‚   โ””โ”€โ”€ case23_kubernetes.py
โ”‚   โ””โ”€โ”€ README.md               # Examples documentation
โ”‚
โ”œโ”€โ”€ deerflow-enterprise-project/ # Full-Stack Enterprise Application
โ”‚   โ”œโ”€โ”€ backend/                # FastAPI Backend
โ”‚   โ”‚   โ”œโ”€โ”€ app/               # Application layer
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ api/v1/        # API routes (auth, agents, tasks, memory...)
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ models/        # SQLAlchemy models
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ services/      # Business logic
โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ core/          # Configuration & database
โ”‚   โ”‚   โ”œโ”€โ”€ packages/harness/  # DeerFlow 2.0 harness
โ”‚   โ”‚   โ”œโ”€โ”€ alembic/           # Database migrations
โ”‚   โ”‚   โ”œโ”€โ”€ tests/             # Test suite
โ”‚   โ”‚   โ”œโ”€โ”€ Dockerfile
โ”‚   โ”‚   โ””โ”€โ”€ requirements.txt
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ frontend/               # Next.js Frontend
โ”‚   โ”‚   โ”œโ”€โ”€ src/app/           # Pages (Dashboard, Agents, Tasks, Memory...)
โ”‚   โ”‚   โ”œโ”€โ”€ src/components/    # UI components (Shadcn UI)
โ”‚   โ”‚   โ”œโ”€โ”€ src/lib/api/       # API clients & hooks
โ”‚   โ”‚   โ”œโ”€โ”€ Dockerfile
โ”‚   โ”‚   โ””โ”€โ”€ package.json
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ docker-compose.yml      # Complete Docker orchestration
โ”‚   โ”œโ”€โ”€ README.md               # Project documentation
โ”‚   โ”œโ”€โ”€ CLAUDE.md               # Development guide
โ”‚   โ””โ”€โ”€ docs/                   # Additional documentation
โ”‚
โ”œโ”€โ”€ DEERFLOW2.0_ARCHITECTURE.md # Architecture documentation
โ”œโ”€โ”€ CLAUDE.md                   # Development guidelines
โ””โ”€โ”€ README.md                   # This file

๐Ÿš€ Quick Start

cd deerflow-enterprise-project

# Start all services with Docker Compose
docker-compose up -d

# Access the application
# Frontend: http://localhost:3000
# Backend API: http://localhost:8000
# API Docs: http://localhost:8000/docs

Option 2: Explore Example Cases

cd deerflow-demo

# View the examples
cat examples/case01_basic_usage.py
cat examples/case04_multi_agent.py

# Read the documentation
cat README.md

๐Ÿ“š Contents

1. deerflow-demo - Example Cases

23 complete, runnable examples demonstrating DeerFlow 2.0 capabilities:

CaseTopicDescription
01Basic UsageClient initialization and basic operations
02Advanced ConfigConfiguration management and environment setup
03FastAPI IntegrationBuilding REST APIs with DeerFlow
04Multi-AgentMulti-agent collaboration patterns
05WebSocket ChatReal-time chat implementation
06MCP ConfigMulti-Client Protocol configuration
07DatabaseDatabase integration with SQLAlchemy
08File UploadFile processing and handling
09Custom ToolBuilding custom tools for agents
10Task SchedulerTask scheduling and workflow automation
11Memory SystemLong-term memory implementation
12MultimodalMultimodal content generation
13API GatewayAPI gateway design patterns
14MonitoringMonitoring, logging, and alerting
15A/B TestingA/B testing for AI systems
16Cache OptimizationCaching strategies
17DistributedDistributed deployment
18Data PipelineData pipeline and ETL
19SecuritySecurity hardening
20PerformancePerformance optimization
21TestingTesting strategies
22CI/CDCI/CD with GitHub Actions
23KubernetesKubernetes deployment

2. deerflow-enterprise-project - Full-Stack Application

A production-ready enterprise AI agent system with:

Backend (FastAPI):

  • โœ… Complete REST API with JWT authentication
  • โœ… Agent management (CRUD operations)
  • โœ… Task management with status tracking
  • โœ… Memory system for long-term context
  • โœ… Thread/conversation management
  • โœ… PostgreSQL database with SQLAlchemy ORM
  • โœ… Alembic database migrations
  • โœ… DeerFlow 2.0 harness integration

Frontend (Next.js):

  • โœ… Modern React with TypeScript
  • โœ… Shadcn UI component library
  • โœ… Tailwind CSS styling
  • โœ… React Query for data fetching
  • โœ… Protected routes with authentication
  • โœ… Dashboard with statistics
  • โœ… Agent management interface
  • โœ… Task management UI
  • โœ… Memory browser
  • โœ… Real-time chat interface

Infrastructure:

  • โœ… Docker Compose with PostgreSQL, Redis, Backend, Frontend
  • โœ… Environment configuration
  • โœ… CORS and security settings

๐Ÿ—๏ธ Architecture

Full-Stack Architecture

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚           Frontend Layer                โ”‚
โ”‚  Next.js 16 + React 19 + TypeScript 5   โ”‚
โ”‚  React Query 5 + Tailwind CSS 4         โ”‚
โ”‚  Shadcn UI + Radix UI                   โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
             โ”‚ HTTP / WebSocket
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚           API Gateway Layer             โ”‚
โ”‚  FastAPI 0.109 + JWT Auth + CORS        โ”‚
โ”‚  Pydantic 2.5 + Python 3.12             โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
             โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚         Service Layer                   โ”‚
โ”‚  Business Logic + DeerFlow Harness      โ”‚
โ”‚  Agent, Task, Memory Services           โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
             โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚         Data Layer                      โ”‚
โ”‚  PostgreSQL 15 + SQLAlchemy 2.0         โ”‚
โ”‚  Redis 7 + Alembic Migrations           โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

๐Ÿ“– Documentation

๐Ÿ› ๏ธ Technology Stack

Backend

  • Python 3.12+
  • FastAPI 0.109+ - Web framework
  • SQLAlchemy 2.0+ - ORM
  • PostgreSQL 15+ - Database
  • Redis 7+ - Cache
  • DeerFlow 2.0 - AI Agent framework

Frontend

  • Next.js 16+
  • React 19+
  • TypeScript 5+
  • Tailwind CSS 4+
  • Shadcn UI - Component library
  • React Query 5+ - Data fetching

Infrastructure

  • Docker & Docker Compose
  • Nginx (optional)
  • Kubernetes (optional)

๐Ÿค Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

๐Ÿ“„ License

This project is licensed under the MIT License.

๐Ÿ™ Acknowledgments


Version: 0.1.0
Last Updated: 2026-03-16
Status: โœ… Complete with Examples + Enterprise Application

Contributors

hunterLee666

5 commits

Languages

Python

59.3%

TypeScript

24.2%

HTML

7.4%

CSS

3.3%

JavaScript

2.8%

Shell

2.7%