mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 09:20:15 -06:00
30 lines
691 B
Go
30 lines
691 B
Go
// +build simple
|
|
|
|
package command
|
|
|
|
import (
|
|
svcconfig "github.com/owncloud/ocis-phoenix/pkg/config"
|
|
"github.com/owncloud/ocis/pkg/config"
|
|
)
|
|
|
|
func configurePhoenix(cfg *config.Config) *svcconfig.Config {
|
|
cfg.Phoenix.Log.Level = cfg.Log.Level
|
|
cfg.Phoenix.Log.Pretty = cfg.Log.Pretty
|
|
cfg.Phoenix.Log.Color = cfg.Log.Color
|
|
|
|
// disable built in apps
|
|
cfg.Phoenix.Phoenix.Config.Apps = []string{}
|
|
// enable ocis-hello extension
|
|
cfg.Phoenix.Phoenix.Config.ExternalApps = []svcconfig.ExternalApp{
|
|
svcconfig.ExternalApp{
|
|
ID: "hello",
|
|
Path: "http://localhost:9105/hello.js",
|
|
Config: map[string]interface{}{
|
|
"url": "http://localhost:9105",
|
|
},
|
|
},
|
|
}
|
|
|
|
return cfg.Phoenix
|
|
}
|