# 1 · 拉取项目
$ git clone https://github.com/Hector-xue/IvyeaOps.git
$ cd IvyeaOps
# 2 · 配置环境
$ cp .env.example .env # admin password & port
# 3 · 启动服务
$ docker compose up -d
→ http://localhost:8080 ✓
# 1 · 拉取项目
PS> git clone https://github.com/Hector-xue/IvyeaOps.git
PS> cd IvyeaOps
# 2 · 配置环境
PS> copy .env.example .env # admin password & port
# 3 · 启动服务(需 Docker Desktop)
PS> docker compose up -d
→ http://localhost:8080 ✓
# 1 · 拉取项目
$ git clone https://github.com/Hector-xue/IvyeaOps.git
$ cd IvyeaOps
# 2 · 一键安装(装依赖+构建+生成 .env)
$ bash scripts/install.sh
# 3 · 启动服务
$ cd server && python3 -m uvicorn app.main:app --port 8001
→ http://127.0.0.1:8001 ✓
# 1 · 拉取项目
PS> git clone https://github.com/Hector-xue/IvyeaOps.git
PS> cd IvyeaOps
# 2 · 一键安装(免 Docker)
PS> powershell -ExecutionPolicy Bypass -File scripts\install.ps1
# 3 · 启动服务
PS> cd server; python -m uvicorn app.main:app --port 8001
→ http://127.0.0.1:8001 ✓