1
0
Fork 0
mirror of https://github.com/drone/drone-cli.git synced 2024-06-10 07:46:04 +02:00
drone-cli/drone/main.go
2021-05-21 14:03:48 +01:00

107 lines
2.4 KiB
Go

package main
import (
"fmt"
"os"
"github.com/drone/drone-cli/drone/autoscale"
"github.com/drone/drone-cli/drone/build"
"github.com/drone/drone-cli/drone/convert"
"github.com/drone/drone-cli/drone/cron"
"github.com/drone/drone-cli/drone/encrypt"
"github.com/drone/drone-cli/drone/exec"
"github.com/drone/drone-cli/drone/format"
"github.com/drone/drone-cli/drone/info"
"github.com/drone/drone-cli/drone/jsonnet"
"github.com/drone/drone-cli/drone/lint"
"github.com/drone/drone-cli/drone/log"
"github.com/drone/drone-cli/drone/orgsecret"
"github.com/drone/drone-cli/drone/plugins"
"github.com/drone/drone-cli/drone/queue"
"github.com/drone/drone-cli/drone/repo"
"github.com/drone/drone-cli/drone/secret"
"github.com/drone/drone-cli/drone/server"
"github.com/drone/drone-cli/drone/sign"
"github.com/drone/drone-cli/drone/starlark"
"github.com/drone/drone-cli/drone/template"
"github.com/drone/drone-cli/drone/user"
_ "github.com/joho/godotenv/autoload"
"github.com/urfave/cli"
)
// drone version number
var version string
func main() {
app := cli.NewApp()
app.Name = "drone"
app.Version = version
app.Usage = "command line utility"
app.EnableBashCompletion = true
app.Flags = []cli.Flag{
cli.StringFlag{
Name: "t, token",
Usage: "server auth token",
EnvVar: "DRONE_TOKEN",
},
cli.StringFlag{
Name: "s, server",
Usage: "server address",
EnvVar: "DRONE_SERVER",
},
cli.StringFlag{
Name: "autoscaler",
Usage: "autoscaler address",
EnvVar: "DRONE_AUTOSCALER",
},
cli.BoolFlag{
Name: "skip-verify",
Usage: "skip ssl verification",
EnvVar: "DRONE_SKIP_VERIFY",
Hidden: true,
},
cli.StringFlag{
Name: "socks-proxy",
Usage: "socks proxy address",
EnvVar: "SOCKS_PROXY",
Hidden: true,
},
cli.BoolFlag{
Name: "socks-proxy-off",
Usage: "socks proxy ignored",
EnvVar: "SOCKS_PROXY_OFF",
Hidden: true,
},
}
app.Commands = []cli.Command{
build.Command,
cron.Command,
log.Command,
encrypt.Command,
exec.Command,
info.Command,
repo.Command,
user.Command,
secret.Command,
server.Command,
queue.Command,
orgsecret.Command,
autoscale.Command,
format.Command,
convert.Command,
lint.Command,
sign.Command,
jsonnet.Command,
starlark.Command,
plugins.Command,
template.Command,
}
if err := app.Run(os.Args); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}