# devops **Repository Path**: hanhai-testtools/devops ## Basic Information - **Project Name**: devops - **Description**: 来自黑芝麻智能科技(bstai)瀚海(hanhai)的CICTCD软件项目全流程管理的系统,实现项目成员对CI/CT/CD各个过程域的高度可自定义和项目全过程的可视化展示 - **Primary Language**: Python - **License**: LGPL-2.1 - **Default Branch**: opensource - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-07-02 - **Last Updated**: 2025-12-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README cicd-management ==================================================== # 开发环境部署 ## 下载代码 从[cicd_management](http://***/test-tool/cicd_managment/tree/develop)克隆代码到工作目录 ## 前端 ### 安装依赖 *默认已安装最新的node和npm* ``` cd cicd_managment/frontend/ npm install npm install vite -g ``` ### 运行 ``` vite ``` ## 后端 ### 安装依赖 *默认已安装python3.10和pip3* ``` cd cicd_managment/backend/ pip install -r requirements.txt ``` ### 修改环境配置 根据实际情况,修改以下配置文件 - `conf/env.py` ### 初始化数据 ``` python3 manage.py makemigrations python3 manage.py migrate python3 manage.py createsuperuser python3 manage.py init all ``` ### 运行 ``` python3 manage.py runserver 0.0.0.0:8080 ```