码农笔录博客源码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.2 KiB

6 years ago
package main
import (
_ "beeblog/routers"
"github.com/astaxie/beego"
"beeblog/models"
"github.com/astaxie/beego/logs"
6 years ago
"github.com/astaxie/beego/orm"
6 years ago
"beeblog/filter"
6 years ago
"github.com/astaxie/beego/plugins/cors"
6 years ago
)
func init() {
models.RegistDB()
6 years ago
beego.InsertFilter("/*", beego.BeforeRouter, filter.LogFilter)
beego.InsertFilter("/api/*", beego.BeforeRouter, filter.FilterAdmin)
6 years ago
}
func main() {
6 years ago
orm.Debug = false
orm.RunSyncdb("default", false, true)
beego.AddFuncMap("NAdd",NAdd)
//beego.SetLevel(beego.LevelInformational)
//logs.LevelDebug
//beego.SetLogger("file", `{"filename":"/opt/logs/aiprose.log"}`)
logs.SetLogger(logs.AdapterFile, `{"filename":"test.log","level":3}`)
6 years ago
beego.InsertFilter("*", beego.BeforeRouter, cors.Allow(&cors.Options{
AllowAllOrigins: true,
AllowMethods: []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"},
AllowHeaders: []string{"Origin", "Authorization", "Access-Control-Allow-Origin", "Access-Control-Allow-Headers", "Content-Type"},
ExposeHeaders: []string{"Content-Length", "Access-Control-Allow-Origin", "Access-Control-Allow-Headers", "Content-Type"},
AllowCredentials: true,
}))
6 years ago
beego.Run()
}
func NAdd(n1 int, n2 int) int{
return n1 + n2
}