mirror of
https://github.com/drone/drone-cli.git
synced 2024-11-23 17:22:09 +01:00
105 lines
2.3 KiB
Go
105 lines
2.3 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/node"
|
|
"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/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 verfification",
|
|
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,
|
|
node.Command,
|
|
autoscale.Command,
|
|
format.Command,
|
|
convert.Command,
|
|
lint.Command,
|
|
sign.Command,
|
|
jsonnet.Command,
|
|
starlark.Command,
|
|
plugins.Command,
|
|
}
|
|
|
|
if err := app.Run(os.Args); err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
os.Exit(1)
|
|
}
|
|
}
|