mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
18 lines
488 B
Go
18 lines
488 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/clems4ever/authelia/internal/utils"
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// ServeCmd serve authelia with the provided configuration
|
|
func ServeCmd(cobraCmd *cobra.Command, args []string) {
|
|
log.Infof("Running Authelia with config %s...", args[0])
|
|
cmd := utils.CommandWithStdout(OutputDir+"/authelia", "-config", args[0])
|
|
cmd.Env = append(os.Environ(), "PUBLIC_DIR=dist/public_html")
|
|
utils.RunCommandUntilCtrlC(cmd)
|
|
}
|