1 Star 1 Fork 83

RT.X / xcloud-webconsole

forked from wl4g / webconsole 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
config_generator.go 1.45 KB
一键复制 编辑 原始数据 按行查看 历史
wanglsir 提交于 2020-09-08 00:44 . feat: add config_generator.go
/**
* Copyright 2017 ~ 2025 the original author or authors<Wanglsir@gmail.com, 983708408@qq.com>.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package main
import (
"fmt"
"io/ioutil"
"os"
"strings"
)
func main() {
// Gets config content template
contentTpl := getConfigContent("WEBCONSOLE.DEFAULT.YML.GO.TPL")
// Gets default config content
defaultConfigContent := getConfigContent("resources/webconsole.default.yml")
// Replace out to webconsole.default.yml.go
goContent := strings.ReplaceAll(contentTpl, "{CONTENT}", defaultConfigContent)
if err := ioutil.WriteFile("pkg/config/webconsole.default.yml.go", []byte(goContent), 0644); err != nil {
panic(err)
}
fmt.Println("Successfully for pkg/config/webconsole.default.yml.go")
}
func getConfigContent(path string) string {
f, err := os.Open(path)
if err != nil {
panic(err)
}
defer f.Close()
data, err2 := ioutil.ReadAll(f)
if err2 != nil {
panic(err2)
}
return string(data)
}
Go
1
https://gitee.com/rtx1996/xcloud-webconsole.git
git@gitee.com:rtx1996/xcloud-webconsole.git
rtx1996
xcloud-webconsole
xcloud-webconsole
master

搜索帮助