Skip to content

Commit 9dd3e1a

Browse files
committedJan 25, 2021
refs init project
1 parent 92701ba commit 9dd3e1a

9 files changed

+483
-1
lines changed
 

‎.editorconfig

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 4
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.yml]
15+
indent_size = 2
16+
17+
[*.go]
18+
indent_style = tab
19+
indent_size = 8

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
# Output of the go coverage tool, specifically when used with LiteIDE
1212
*.out
13+
vendor/
1314

1415
# Dependency directories (remove the comment below to include it)
1516
# vendor/

‎README.md

+20-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,21 @@
11
# deploy-tool
2-
Golang
2+
3+
## Run with docker for development
4+
```sh
5+
docker-compose up -d
6+
docker-compose exec tool bash
7+
```
8+
9+
## Setup project for development
10+
```sh
11+
# Inside docker
12+
go get
13+
go mod vendor
14+
```
15+
16+
## Setup and running for development
17+
18+
```sh
19+
# file config.yml
20+
go run main.go
21+
```

‎cmd/ping.go

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package cmd
2+
3+
import (
4+
"fmt"
5+
"github.com/urfave/cli/v2"
6+
)
7+
8+
type ping struct {
9+
}
10+
11+
func PingInit() *cli.Command {
12+
return &cli.Command{
13+
Name: "ping",
14+
Aliases: []string{"p"},
15+
Usage: "Testing connection into servers",
16+
Action: func(c *cli.Context) error {
17+
fmt.Println("completed task: ", c.Args().First())
18+
return nil
19+
},
20+
}
21+
}

‎config/template.go

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
package config
2+
3+
import "github.com/fatih/color"
4+
5+
// AppHelpTemplate is the text template for the Default help topic.
6+
// cli.go uses text/template to render templates. You can
7+
// render custom help text by setting this variable.
8+
9+
var (
10+
green = color.New(color.FgHiGreen).SprintFunc()
11+
yellow = color.New(color.FgHiYellow).SprintFunc()
12+
)
13+
14+
var AppHelpTemplate = yellow("NAME:") + green(`
15+
{{.Name}}{{if .Usage}} - {{.Usage}}{{end}}
16+
17+
`) + yellow("USAGE:") + green(`
18+
{{if .UsageText}}{{.UsageText}}{{else}}{{.HelpName}} {{if .VisibleFlags}}[global options]{{end}}{{if .Commands}} command [command options]{{end}} {{if .ArgsUsage}}{{.ArgsUsage}}{{else}}[arguments...]{{end}}{{end}}{{if .Version}}{{if not .HideVersion}}
19+
20+
`) + yellow("VERSION:") + green(`
21+
{{.Version}}{{end}}{{end}}{{if .Description}}
22+
23+
`) + yellow("DESCRIPTION:") + green(`
24+
{{.Description | nindent 3 | trim}}{{end}}{{if len .Authors}}
25+
26+
`) + yellow("AUTHOR:") + green(`{{with $length := len .Authors}}{{if ne 1 $length}}S{{end}}{{end}}:
27+
{{range $index, $author := .Authors}}{{if $index}}
28+
{{end}}{{$author}}{{end}}{{end}}{{if .VisibleCommands}}
29+
30+
`) + yellow("COMMANDS:") + green(`{{range .VisibleCategories}}{{if .Name}}
31+
{{.Name}}:{{range .VisibleCommands}}
32+
{{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}}{{else}}{{range .VisibleCommands}}
33+
{{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}}{{end}}{{end}}{{end}}{{if .VisibleFlags}}
34+
35+
`) + yellow("GLOBAL OPTIONS:") + green(`
36+
{{range $index, $option := .VisibleFlags}}{{if $index}}
37+
{{end}}{{$option}}{{end}}{{end}}{{if .Copyright}}
38+
39+
`) + yellow("COPYRIGHT:") + green(`
40+
{{.Copyright}}{{end}}
41+
`)
42+
43+
// CommandHelpTemplate is the text template for the command help topic.
44+
// cli.go uses text/template to render templates. You can
45+
// render custom help text by setting this variable.
46+
var CommandHelpTemplate = yellow("NAME:") + green(`
47+
{{.HelpName}} - {{.Usage}}
48+
49+
`) + yellow("USAGE:") + green(`
50+
{{if .UsageText}}{{.UsageText}}{{else}}{{.HelpName}}{{if .VisibleFlags}} [command options]{{end}} {{if .ArgsUsage}}{{.ArgsUsage}}{{else}}[arguments...]{{end}}{{end}}{{if .Category}}
51+
52+
`) + yellow("CATEGORY:") + green(`
53+
{{.Category}}{{end}}{{if .Description}}
54+
55+
`) + yellow("DESCRIPTION:") + green(`
56+
{{.Description | nindent 3 | trim}}{{end}}{{if .VisibleFlags}}
57+
58+
`) + yellow("OPTIONS:") + green(`
59+
{{range .VisibleFlags}}{{.}}
60+
{{end}}{{end}}
61+
`)

‎docker-compose.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: "2"
2+
3+
services:
4+
application:
5+
image: debian
6+
volumes:
7+
- ./:/go/src/github.com/dung13890/deploy-tool
8+
tool:
9+
image: dung13890/go-env
10+
restart: on-failure
11+
volumes_from:
12+
- application
13+
working_dir: /go/src/github.com/dung13890/deploy-tool
14+
environment:
15+
- GOBIN=/go/bin
16+
tty: true

‎go.mod

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module github.com/dung13890/deploy-tool
2+
3+
go 1.15
4+
5+
require (
6+
github.com/fatih/color v1.10.0
7+
github.com/russross/blackfriday/v2 v2.1.0 // indirect
8+
github.com/urfave/cli/v2 v2.3.0
9+
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect
10+
)

‎go.sum

+311
Large diffs are not rendered by default.

‎main.go

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package main
2+
3+
import (
4+
"github.com/dung13890/deploy-tool/cmd"
5+
"github.com/dung13890/deploy-tool/config"
6+
"github.com/urfave/cli/v2"
7+
"log"
8+
"os"
9+
)
10+
11+
func main() {
12+
cli.AppHelpTemplate = config.AppHelpTemplate
13+
cli.CommandHelpTemplate = config.CommandHelpTemplate
14+
ping := cmd.PingInit()
15+
app := cli.NewApp()
16+
app.EnableBashCompletion = true
17+
app.Commands = []*cli.Command{
18+
ping,
19+
}
20+
err := app.Run(os.Args)
21+
if err != nil {
22+
log.Fatal(err)
23+
}
24+
}

0 commit comments

Comments
 (0)