golang :go1.18+
数据库:mysql5.7+
缓存:redis3.0+
Node : 12+
github:
https://github.com/guyan0319/go-vue-admin
码云(国内):
https://gitee.com/jason0319/go-vue-admin
1、clone项目源代码
git clone https://github.com/guyan0319/go-vue-admin
2、安装 yarn
npm install -g yarn
3、新建数据库名(如:gvadmindb) 、导入目录 manifest/sql/gvadmindb.sql
根据实际环境修改 hack/config.yaml
dao:
- link: "mysql:root:123456@tcp(127.0.0.1:3306)/gvadmindb"
tables: ""
tablesEx: ""
removePrefix: "gf_"
descriptionTag: true
noModelComment: true
path: "./internal/app/system"
manifest/config/config.yaml 中数据库配置和redis配置信息
# Database.
database:
logger:
level: "all"
stdout: true
Path: "resource/log/sql"
default:
link: "mysql:root:123456@tcp(127.0.0.1:3306)/gvadmindb?charset=utf8mb4&parseTime=true&loc=Local"
debug: true
charset: "utf8mb4" #数据库编码
dryRun: false #空跑
maxIdle: 10 #连接池最大闲置的连接数
maxOpen: 10 #连接池最大打开的连接数
maxLifetime: "30s" #(单位秒)连接对象可重复使用的时间长度
# Redis 配置示例
redis:
# 单实例配置
default:
address: 127.0.0.1:6379
db: 1
# pass: "password" # 在此配置密码, 没有可去掉
idleTimeout: "60s" #连接最大空闲时间,使用时间字符串例如30s/1m/1d
maxConnLifetime: "90s" #连接最长存活时间,使用时间字符串例如30s/1m/1d
waitTimeout: "60s" #等待连接池连接的超时时间,使用时间字符串例如30s/1m/1d
dialTimeout: "30s" #TCP连接的超时时间,使用时间字符串例如30s/1m/1d
readTimeout: "30s" #TCP的Read操作超时时间,使用时间字符串例如30s/1m/1d
writeTimeout: "30s" #TCP的Write操作超时时间,使用时间字符串例如30s/1m/1d
maxActive: 100
4、启动服务端
go run main.go
如果在开发环境,热更新可使用
gf run main.go
5、启动前端,打开RuoYi-Vue3目录
yarn dev
6、浏览器打开
http://localhost/login?redirect=/index
登录测试账户信息
账户:admin
密码:admin123
开发者模式下,不验证验证码,可随意字符。
如生产环境去掉//gmode.SetProduct()前面注释