跳至主要內容

开发手册

大约 1 分钟

开发手册

开发环境说明

后端

  • go 版本为1.22.9
  • windows 需要安装 mingw(https://www.mingw-w64.org/downloads/)

前端

  • Node 版本为18.20.4

快速体验

  • 1.拉取后台代码
git clone https://github.com/samwafgo/SamWaf
  • 2.下载前端编译好的版本(单独编译教程在后面详细说明)

https://github.com/samwafgo/SamWafWeb/releases/latest/download/dist.zipopen in new window

下载后释放到后台目录:

SamWaf/public/dist

目录结构如下:

├─public
│  └─dist  //把前端编译好的内容释放到里面
│      └─assets
│      └─index.html
│      └─favicon.ico
│      └─robots.txt
  • 3.启动后台

稍加改动global/global.go的代码(为了方便直接用前端编译好的代码)

 GWAF_RELEASE              string    = "true"

启动代码入口: main.go

随后访问:http://127.0.0.1:26666/open in new window 就可以了

开发调试

后端

确保global/global.go

 GWAF_RELEASE              string    = "false"

启动:main.go

前端

  • 拉取前端代码
git clone https://github.com/samwafgo/SamWafWeb
  • 安装依赖(首次)
npm install
  • 启动前端
npm run dev

到此位置,后端和前端的开发代码就都启动了,可以进行协同调试了。

编译常见问题

1. wafdb\localdb.go:380:32: destSQLiteConn.Backup undefined

# SamWaf/wafdb
wafdb\localdb.go:380:32: destSQLiteConn.Backup undefined (type *sqlite3.SQLiteConn has no field or method Backup)

这个是提示由于我们本地是用的sqlite,需要安装编译器,windows 下安装 mingw(https://www.mingw-w64.org/downloads/),在windows环境下把mingw的bin目录添加到环境变量里面。示例如下: sqlite。改完后记着把开发工具重启一下