mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 17:30:29 -06:00
39 lines
755 B
Go
39 lines
755 B
Go
//go:build !simple
|
|
// +build !simple
|
|
|
|
package command
|
|
|
|
import (
|
|
"github.com/owncloud/ocis/ocis-pkg/shared"
|
|
|
|
"github.com/owncloud/ocis/ocis-pkg/config"
|
|
"github.com/owncloud/ocis/ocis/pkg/register"
|
|
"github.com/owncloud/ocis/ocis/pkg/runtime"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// Server is the entrypoint for the server command.
|
|
func Server(cfg *config.Config) *cli.Command {
|
|
return &cli.Command{
|
|
Name: "server",
|
|
Usage: "Start fullstack server",
|
|
Category: "Fullstack",
|
|
Before: func(c *cli.Context) error {
|
|
return ParseConfig(c, cfg)
|
|
},
|
|
Action: func(c *cli.Context) error {
|
|
|
|
cfg.Commons = &shared.Commons{
|
|
Log: &cfg.Log,
|
|
}
|
|
|
|
r := runtime.New(cfg)
|
|
return r.Start()
|
|
},
|
|
}
|
|
}
|
|
|
|
func init() {
|
|
register.AddCommand(Server)
|
|
}
|