mirror of
https://github.com/Macrame-App/Macrame
synced 2025-12-29 07:19:26 +00:00
14 lines
215 B
Go
14 lines
215 B
Go
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
|
|
}
|