安装过程中可以选择自动在本机安装MySQL

This commit is contained in:
GoEdgeLab
2023-03-11 18:52:40 +08:00
parent 6d34de12da
commit 83e7a5dc14
22 changed files with 1287 additions and 164 deletions

View File

@@ -1,6 +1,9 @@
package setup
import "github.com/iwind/TeaGo"
import (
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/setup/mysql"
"github.com/iwind/TeaGo"
)
func init() {
TeaGo.BeforeStart(func(server *TeaGo.Server) {
@@ -15,6 +18,8 @@ func init() {
Post("/status", new(StatusAction)).
Post("/detectDB", new(DetectDBAction)).
Post("/checkLocalIP", new(CheckLocalIPAction)).
GetPost("/mysql/installPopup", new(mysql.InstallPopupAction)).
Post("/mysql/installLogs", new(mysql.InstallLogsAction)).
EndAll()
})
}