Go to file
2025-06-01 17:52:27 +08:00
api Implement Dify account creation with tenant association: 1. Create tenant named 'username's Workspace' 2. Set owner role for new account 3. Add normal role in ucas's Workspace 4. Fix UUID handling in tenant info retrieval 2025-06-01 17:52:27 +08:00
docs Implement Dify account creation with tenant association: 1. Create tenant named 'username's Workspace' 2. Set owner role for new account 3. Add normal role in ucas's Workspace 4. Fix UUID handling in tenant info retrieval 2025-06-01 17:52:27 +08:00
web Implement Dify account creation with tenant association: 1. Create tenant named 'username's Workspace' 2. Set owner role for new account 3. Add normal role in ucas's Workspace 4. Fix UUID handling in tenant info retrieval 2025-06-01 17:52:27 +08:00
.gitignore 初始化项目仓库,包含基础结构和开发计划 2025-05-02 18:33:06 +08:00
README.md 初始化项目仓库,包含基础结构和开发计划 2025-05-02 18:33:06 +08:00

Dify Admin 项目

这是一个管理后台项目,包含以下主要部分:

后端 (API)

  • Python Flask 应用
  • 数据库管理
  • 账户和租户管理
  • API服务

前端 (Web)

  • Vue.js 3 前端
  • Vite 构建工具
  • 基于路由的页面结构
  • 认证和用户管理界面

项目结构

dify_admin/
├── api/            # 后端代码
├── web/            # 前端代码
└── README.md       # 项目说明

开发环境

  • Python 3.x
  • Node.js 16+
  • pnpm 包管理

快速开始

  1. 后端: cd api && pip install -r requirements.txt
  2. 前端: cd web && pnpm install