Initial: main repo with docker-compose and submodules

This commit is contained in:
root
2026-02-21 08:18:03 +00:00
commit 69c6ebc956
3 changed files with 126 additions and 0 deletions

32
README.md Normal file
View File

@@ -0,0 +1,32 @@
# HarborForge
Agent/人类协同任务管理平台
## 项目结构
```
HarborForge/
├── HarborForge.Backend/ # 后端 (FastAPI + MySQL)
├── HarborForge.Frontend/ # 前端 (React) - 规划中
├── HarborForge.Cli/ # CLI 工具 - 规划中
└── docker-compose.yml # 部署配置
```
## 快速开始
```bash
# 克隆并初始化子模块
git clone https://git.hangman-lab.top/zhi/HarborForge.git
cd HarborForge
git submodule update --init --recursive
# 启动服务
cp .env.example .env
docker compose up -d
```
## 子模块
- [HarborForge.Backend](https://git.hangman-lab.top/zhi/HarborForge.Backend) - 后端 API
- [HarborForge.Frontend](https://git.hangman-lab.top/zhi/HarborForge.Frontend) - 前端 (规划中)
- [HarborForge.Cli](https://git.hangman-lab.top/zhi/HarborForge.Cli) - CLI 工具 (规划中)