源码下载

后端源码

UniOne Cloud 后端项目源码,基于 Spring Boot 3.4.0 和 Spring Cloud 4.2.0 开发。

前端源码

UniOne Cloud 前端项目源码,基于 Vue.js 开发的管理界面。

安装说明

前提条件

  • JDK 21 或更高版本
  • Maven 3.6+ 构建工具
  • MySQL 8.0+ 数据库
  • Redis 5.0+ 缓存服务
  • Nacos 2023.0.3.2 服务注册中心

快速开始

# 克隆后端代码
git clone https://github.com/unione-cloud/unione.git
cd unione

# 构建项目
mvn clean install

# 启动服务
cd unione-starter
mvn spring-boot:run

# 克隆前端代码
git clone https://github.com/unione-cloud/unione-admin-vue.git
cd unione-admin-vue
npm install
npm run dev