forked from Open-CT/openbrain
34 lines
1.1 KiB
Go
34 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/astaxie/beego"
|
|
"github.com/astaxie/beego/plugins/cors"
|
|
"github.com/openbrainorg/openbrain/object"
|
|
"github.com/openbrainorg/openbrain/routers"
|
|
_ "github.com/openbrainorg/openbrain/routers"
|
|
)
|
|
|
|
func main() {
|
|
object.InitAdapter()
|
|
|
|
beego.InsertFilter("*", beego.BeforeRouter, cors.Allow(&cors.Options{
|
|
AllowOrigins: []string{"*"},
|
|
AllowMethods: []string{"GET", "POST", "DELETE", "PUT", "PATCH", "OPTIONS"},
|
|
AllowHeaders: []string{"Origin", "X-Requested-With", "Content-Type", "Accept"},
|
|
ExposeHeaders: []string{"Content-Length"},
|
|
AllowCredentials: true,
|
|
}))
|
|
|
|
//beego.DelStaticPath("/static")
|
|
beego.SetStaticPath("/static", "web/build/static")
|
|
// https://studygolang.com/articles/2303
|
|
beego.InsertFilter("/", beego.BeforeRouter, routers.TransparentStatic) // must has this for default page
|
|
beego.InsertFilter("/*", beego.BeforeRouter, routers.TransparentStatic)
|
|
|
|
beego.BConfig.WebConfig.Session.SessionProvider = "file"
|
|
beego.BConfig.WebConfig.Session.SessionProviderConfig = "./tmp"
|
|
beego.BConfig.WebConfig.Session.SessionGCMaxLifetime = 3600 * 24 * 365
|
|
|
|
beego.Run()
|
|
}
|