realize/realize.go

114 lines
3.4 KiB
Go
Raw Normal View History

2016-07-12 08:18:02 +00:00
package main
import (
2016-09-17 23:04:36 +00:00
a "github.com/tockins/realize/app"
2016-08-17 23:35:37 +00:00
"gopkg.in/urfave/cli.v2"
"os"
2016-07-12 08:18:02 +00:00
)
2016-10-21 13:59:11 +00:00
var app a.Realize
2016-09-01 22:17:19 +00:00
2016-07-12 08:18:02 +00:00
func main() {
2016-09-17 23:04:36 +00:00
c := &cli.App{
2016-09-18 11:50:15 +00:00
Name: a.Name,
Version: a.Version,
2016-07-23 22:49:19 +00:00
Authors: []*cli.Author{
2016-08-21 14:35:17 +00:00
{
2016-08-23 13:17:44 +00:00
Name: "Alessio Pracchia",
Email: "pracchia@hastega.it",
},
{
Name: "Daniele Conventi",
Email: "conventi@hastega.it",
2016-07-23 22:49:19 +00:00
},
},
2016-09-18 11:50:15 +00:00
Usage: a.Description,
2016-07-12 18:03:22 +00:00
Commands: []*cli.Command{
{
2016-08-17 23:35:37 +00:00
Name: "run",
2016-07-12 18:03:22 +00:00
Usage: "Build and watch file changes",
2016-09-18 11:50:15 +00:00
Flags: []cli.Flag{
&cli.BoolFlag{Name: "no-server", Usage: "Enable the web panel"},
&cli.BoolFlag{Name: "open", Usage: "Automatically opens the web panel"},
2016-09-18 11:50:15 +00:00
},
2016-08-21 21:31:16 +00:00
Action: func(p *cli.Context) error {
2016-09-18 11:50:15 +00:00
return app.Handle(app.Run(p))
2016-08-21 21:31:16 +00:00
},
Before: func(c *cli.Context) error {
2016-10-17 09:58:22 +00:00
return app.Before(c)
2016-08-21 21:31:16 +00:00
},
},
{
Name: "fast",
2016-08-31 12:08:15 +00:00
Usage: "Build and watch file changes for a single project without any Configuration file",
2016-08-21 18:15:01 +00:00
Flags: []cli.Flag{
2016-08-30 17:27:47 +00:00
&cli.StringFlag{Name: "path", Aliases: []string{"b"}, Value: "", Usage: "Project base path"},
2016-08-22 16:08:41 +00:00
&cli.BoolFlag{Name: "build", Value: false, Usage: "Enables the build"},
&cli.BoolFlag{Name: "no-run", Usage: "Disables the run"},
&cli.BoolFlag{Name: "no-bin", Usage: "Disables the installation"},
&cli.BoolFlag{Name: "no-fmt", Usage: "Disables the fmt (go fmt)"},
2016-09-18 11:50:15 +00:00
&cli.BoolFlag{Name: "no-server", Usage: "Disables the web panel"},
&cli.BoolFlag{Name: "open", Usage: "Automatically opens the web panel"},
2016-09-18 11:50:15 +00:00
&cli.BoolFlag{Name: "test", Value: false, Usage: "Enables the tests"},
&cli.BoolFlag{Name: "config", Value: false, Usage: "Take the defined settings if exist a Configuration file."},
2016-08-21 18:15:01 +00:00
},
2016-07-27 09:14:32 +00:00
Action: func(p *cli.Context) error {
2016-09-18 11:50:15 +00:00
return app.Handle(app.Fast(p))
2016-07-12 18:03:22 +00:00
},
2016-07-27 11:42:25 +00:00
Before: func(c *cli.Context) error {
2016-10-17 09:58:22 +00:00
return app.Before(c)
2016-07-27 11:42:25 +00:00
},
2016-07-12 18:03:22 +00:00
},
2016-07-23 22:49:19 +00:00
{
Name: "add",
2016-08-31 12:08:15 +00:00
Category: "Configuration",
2016-08-17 23:35:37 +00:00
Aliases: []string{"a"},
Usage: "Add another project",
2016-07-23 22:49:19 +00:00
Flags: []cli.Flag{
2016-10-21 13:59:11 +00:00
&cli.StringFlag{Name: "name", Aliases: []string{"n"}, Value: app.Dir(), Usage: "Project name"},
2016-08-22 16:08:41 +00:00
&cli.StringFlag{Name: "path", Aliases: []string{"b"}, Value: "/", Usage: "Project base path"},
2016-08-27 21:57:26 +00:00
&cli.BoolFlag{Name: "build", Value: false, Usage: "Enable the build"},
&cli.BoolFlag{Name: "no-run", Usage: "Disables the run"},
&cli.BoolFlag{Name: "no-bin", Usage: "Disables the installation"},
&cli.BoolFlag{Name: "no-fmt", Usage: "Disables the fmt (go fmt)"},
2016-09-18 11:50:15 +00:00
&cli.BoolFlag{Name: "test", Value: false, Usage: "Enables the tests"},
2016-07-23 22:49:19 +00:00
},
2016-07-27 09:14:32 +00:00
Action: func(p *cli.Context) error {
2016-09-18 11:50:15 +00:00
return app.Handle(app.Add(p))
2016-07-23 22:49:19 +00:00
},
2016-07-27 11:42:25 +00:00
Before: func(c *cli.Context) error {
2016-10-17 09:58:22 +00:00
return app.Before(c)
2016-07-27 11:42:25 +00:00
},
2016-07-12 18:03:22 +00:00
},
2016-07-26 17:04:13 +00:00
{
Name: "remove",
2016-08-31 12:08:15 +00:00
Category: "Configuration",
2016-08-17 23:35:37 +00:00
Aliases: []string{"r"},
Usage: "Remove a project",
2016-07-26 17:04:13 +00:00
Flags: []cli.Flag{
&cli.StringFlag{Name: "name", Aliases: []string{"n"}, Value: ""},
2016-07-26 17:04:13 +00:00
},
2016-07-27 09:14:32 +00:00
Action: func(p *cli.Context) error {
2016-09-18 11:50:15 +00:00
return app.Handle(app.Remove(p))
2016-07-26 17:04:13 +00:00
},
2016-07-27 11:42:25 +00:00
Before: func(c *cli.Context) error {
2016-10-17 09:58:22 +00:00
return app.Before(c)
2016-07-27 11:42:25 +00:00
},
2016-07-26 17:04:13 +00:00
},
{
Name: "list",
2016-08-31 12:08:15 +00:00
Category: "Configuration",
2016-08-17 23:35:37 +00:00
Aliases: []string{"l"},
Usage: "Projects list",
2016-07-27 09:14:32 +00:00
Action: func(p *cli.Context) error {
2016-09-18 11:50:15 +00:00
return app.Handle(app.List(p))
2016-07-26 17:04:13 +00:00
},
2016-07-27 11:42:25 +00:00
Before: func(c *cli.Context) error {
2016-10-17 09:58:22 +00:00
return app.Before(c)
2016-07-27 11:42:25 +00:00
},
2016-07-26 17:04:13 +00:00
},
2016-07-12 18:03:22 +00:00
},
}
2016-09-17 23:04:36 +00:00
c.Run(os.Args)
2016-08-17 23:35:37 +00:00
}