config.go 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package utils
  2. import (
  3. "github.com/astaxie/beego"
  4. )
  5. var (
  6. RunMode string //运行模式
  7. MYSQL_URL string //数据库连接
  8. MYSQL_URL_RDDP string //数据库连接
  9. MYSQL_URL_EDB string
  10. )
  11. var (
  12. STATIC_DIR string
  13. )
  14. //微信配置信息
  15. var (
  16. WxId string //微信原始ID
  17. WxAppId string
  18. WxAppSecret string
  19. TemplateIdByProduct string//产品运行报告通知-模板ID
  20. TemplateRedirectUrl string//模板消息跳转地址
  21. )
  22. func init() {
  23. RunMode = beego.AppConfig.String("run_mode")
  24. config, err := beego.AppConfig.GetSection(RunMode)
  25. if err != nil {
  26. panic("配置文件读取错误 " + err.Error())
  27. }
  28. beego.Info(RunMode + " 模式")
  29. MYSQL_URL = config["mysql_url"]
  30. MYSQL_URL_RDDP = config["mysql_url_rddp"]
  31. MYSQL_URL_EDB = config["mysql_url_edb"]
  32. if RunMode == "release" {
  33. WxAppId = "wx4a844c734d8c8e56"
  34. WxAppSecret = "26c586e7ccb3c575433f0f37797b3eeb"
  35. WxId = "gh_b67e0049fb8c"
  36. TemplateIdByProduct = "Cp2wF8gvBtxyWV4DeYuI172oqwyYXVRSm3AyJO42d84"
  37. TemplateRedirectUrl="https://ficc.hzinsights.com/reportdtl?id="
  38. STATIC_DIR="/home/static/imgs/"
  39. } else {
  40. WxAppId = "wx9b5d7291e581233a"
  41. WxAppSecret = "f4d52e34021eee262dce9682b31f8861"
  42. WxId = "gh_5dc508325c6f"
  43. TemplateIdByProduct = "-YjuPOB7Fqd-S3ilabYa6wvjDY9aXmeEfPN6DCiy-EY"
  44. TemplateRedirectUrl="http://rddpweb.brilliantstart.cn/reportdtl?id="
  45. STATIC_DIR="/home/static/imgs/"
  46. }
  47. }
  48. //http://adminapi.brilliantstart.cn/admin/
  49. //http://adminapi.brilliantstart.cn/swagger/