又撸了一个开源项目!!! - Go语言中文社区

又撸了一个开源项目!!!


花了两周左右,写了一个客户关系管理系统,基于 Vue + Go 实现,主要功能有仪表盘、客户管理、合同管理、产品管理,订阅等功能。

前几天已经在 Github 上开源了,今天也把项目部署到云服务器上了,很完美!

Github 开源地址:

https://github.com/zchengo/crm

开源 ZOCRM 官网(用电脑浏览器访问):

https://www.zocrm.cloud

项目预览

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

技术选型

前端技术:

技术说明相关文档
Vue.js前端框架https://v3.cn.vuejs.org
Vue Router页面路由https://router.vuejs.org
Axios网络请求库https://axios-http.com
Pinia状态管理https://pinia.vuejs.org
Vite构建工具https://vitejs.cn
Ant Design Vue前端UI组件库https://www.antdv.com
Apache ECharts可视化图表库https://echarts.apache.org
Moment日期库https://momentjs.com

后端技术:

技术说明相关文档
GinWeb框架https://gin-gonic.com
GormORM框架https://gorm.io
Jwt用户认证https://github.com/golang-jwt/jwt
Viper配置管理https://github.com/spf13/viper
Redis数据缓存https://github.com/go-redis/redis
Mail邮件服务SDKhttps://github.com/go-gomail/gomail

快速运行

系统运行环境:

环境版本下载地址
go>= 1.19.2https://golang.google.cn/dl
mysql>= 8.0.31https://www.mysql.com/downloads
redis>= 7.0.5https://redis.io/download
node>= 18.12.0https://nodejs.org/en/download

在终端中,执行如下命令,初始化和运行。

$ cd server
$ go mod tidy
$ go build -o server main.go (windows编译命令为 go build -o server.exe main.go )

# 运行二进制
$ ./server (windows运行命令为 server.exe)

$ cd web
$ npm install
$ npm run dev

运行成功后,打开浏览器访问 http://127.0.0.1:8008/#/login ,账号是 12345@qq.com ,密码是 123 。

本项目持续更新优化,如在使用过程中遇到问题,可以在评论区反馈,我看到会第一时间回复!

版权声明:本文来源CSDN,感谢博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/m0_47890251/article/details/128129234
站方申明:本站部分内容来自社区用户分享,若涉及侵权,请联系站方删除。
  • 发表于 2023-01-03 21:06:16
  • 阅读 ( 274 )
  • 分类:Go开源项目

0 条评论

请先 登录 后评论

官方社群

GO教程

推荐文章

猜你喜欢