开源实例之Simple Admin
前言
Simple Admin is a powerful microservice framework for large management system. It is based on go-zero and supports several advanced features. It can help you to develop a microservice back-end management system in a short time.
Simple Admin是一个基于Go Zero开发面向中大型项目的分布式微服务后端管理系统脚手架,提供丰富的后台管理功能,支持k8s快速部署,助力快速开发高并发微服务集群,适合学习和商用。
实例地址
https://simple-admin.dujun.eu.org
实例配置
配置 | 描述 |
---|---|
系统 | Debian |
开发环境服务端 | Go 1.20、Node.js 16 |
数据库 | MariaDB 10.5 |
缓存 | Redis |
服务器 | Nginx |
程序 | Simple Admin 1.0.5 |
实例部署
权限要求
- 具有系统读写权限
- 已安装 Go、Node.js
- 已安装 MySQL、Redis
- 已安装 Nginx
安装程序
文档地址:https://doc.ryansu.pro/
前端仓库:https://github.com/suyuan32/simple-admin-backend-ui
后端仓库:https://github.com/suyuan32/simple-admin-core
前端部署
#克隆代码
git clone https://github.com/suyuan32/simple-admin-backend-ui.git
#安装依赖
pnpm install
#打包
pnpm build
后端部署
#克隆代码
git clone https://github.com/suyuan32/simple-admin-core.git
#修改 etc/core.yaml 相关配置
#安装依赖
go mod tidy
#运行 rpc 服务
cd rpc
go run core.go -f etc/core.yaml
#运行 api 服务
cd api
go run core.go -f etc/core.yaml
实例体验
后记
本实例仅供参考,不定期重置数据。