mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
e67f63ee44
* [CI] Add godot linter * Implement godot recommendations
16 lines
419 B
Go
16 lines
419 B
Go
package main
|
|
|
|
import (
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/authelia/authelia/internal/utils"
|
|
)
|
|
|
|
// 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])
|
|
utils.RunCommandUntilCtrlC(cmd)
|
|
}
|