Skip to content

Files

Latest commit

 

History

History
46 lines (36 loc) · 1.29 KB

README.md

File metadata and controls

46 lines (36 loc) · 1.29 KB

dilu

简介

的卢,是golang下的一套web快速框架,系统基于gin+gorm封装,并实现了代码自动生成。

  • 前端基于vue3+element-plus点我查看
  • 演示地址,系统做了saas化设计,主账号直接dilu登录,团队账户为tangtang,密码默认。

安装使用

  • 获取项目代码
git clone https://github.com/baowk/dilu.git
  • 安装依赖
cd dilu
go mod tidy
  • 初始化 mysql 创建两个库,dulu-db,dental-db 导入基础数据 resources\dbs\dental-db.sql resources\dbs\dilu-db.sql 修改数据库配置 resources\config.dev.yaml
dbcfg: # 数据库配置
  driver: mysql  
  dns: root:12345678@tcp(127.0.0.1:3306)/dilu-db?charset=utf8&parseTime=True&loc=Local&timeout=1000ms  # 数据库连接字符串

  dbs:      
    - dental:    #子配置会继承父配置
        dns: root:12345678@tcp(127.0.0.1:3306)/dental-db?charset=utf8&parseTime=True&loc=Local&timeout=1000ms  # 数据库连接字符串
  • 运行
go run main.go start -c resources/config.dev.yaml

前端使用请跳至前端 d7f4b2513f7440d6c4c9bd932b4800f