Alpha version be update

This commit is contained in:
Jesse Malotaux 2025-04-17 11:20:27 +02:00
parent f5f6f25a4a
commit e1b13b3930
12 changed files with 86 additions and 42 deletions

14
be/setup/setup.go Normal file
View file

@ -0,0 +1,14 @@
package main
import "be/app/helper"
func main() {
helper.CreateConfigFile("../public/config.js")
helper.CheckFeDevDir()
port := helper.EnvGet("MCRM__PORT")
helper.MakeCaddyFile("CaddyFile", port)
return
}