2022-12-07 15:50:59 +08:00
|
|
|
//----------------------------------------
|
|
|
|
//
|
|
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
|
|
//
|
2023-02-19 23:21:47 +08:00
|
|
|
// Licensed under Apache License Version 2.0, January 2004
|
|
|
|
//
|
|
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
2022-12-07 15:50:59 +08:00
|
|
|
//
|
|
|
|
//----------------------------------------
|
|
|
|
|
2023-09-03 18:40:44 +08:00
|
|
|
package command
|
2022-11-09 11:50:59 +08:00
|
|
|
|
2023-09-03 18:40:44 +08:00
|
|
|
type Config struct {
|
2022-11-09 12:12:40 +08:00
|
|
|
Index int
|
|
|
|
Wd string
|
2023-09-03 19:01:17 +08:00
|
|
|
Install Install `command:"install" description:"install energy development dependency environment"`
|
|
|
|
Package Package `command:"package" description:"energy application production and installation package"`
|
|
|
|
Version Version `command:"version" description:"list all release version numbers of energy"`
|
|
|
|
Setenv Setenv `command:"setenv" description:"set ENERGY_ HOME framework environment"`
|
|
|
|
Env Env `command:"env" description:"display ENERGY_ HOME framework environment directory"`
|
|
|
|
Init Init `command:"init" description:"initialize the energy application project"`
|
|
|
|
Build Build `command:"build" description:"building an energy project"`
|
2023-08-20 21:51:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type Command struct {
|
2023-09-03 18:40:44 +08:00
|
|
|
Run func(c *Config) error
|
2023-08-20 21:51:12 +08:00
|
|
|
UsageLine, Short, Long string
|
2022-11-09 11:50:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type Install struct {
|
2022-11-18 12:15:47 +08:00
|
|
|
Path string `short:"p" long:"path" description:"Installation directory Default current directory"`
|
|
|
|
Version string `short:"v" long:"version" description:"Specifying a version number"`
|
2023-09-05 17:01:33 +08:00
|
|
|
Name string `short:"n" long:"name" description:"Name of the framework directory after installation" default:"EnergyFramework"`
|
2023-08-21 12:22:08 +08:00
|
|
|
Download string `short:"d" long:"download" description:"Download Source, 0:gitee or 1:github, Default empty" default:""`
|
2023-09-06 17:41:06 +08:00
|
|
|
All bool `short:"a" long:"all" description:"Install all, skip installation prompts (Y/n)"`
|
2023-08-18 18:20:52 +08:00
|
|
|
CEF string `short:"c" long:"cef" description:"Install system supports CEF version, provide 4 options, default empty. default, windows7, gtk2, flash" default:""`
|
2023-09-05 22:30:04 +08:00
|
|
|
IGolang bool
|
|
|
|
ICEF bool
|
|
|
|
INSIS bool
|
|
|
|
IUPX bool
|
2022-11-09 11:50:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type Package struct {
|
2023-09-02 23:37:52 +08:00
|
|
|
Path string `short:"p" long:"path" description:"project path"`
|
2022-11-09 11:50:59 +08:00
|
|
|
}
|
2022-11-09 12:12:40 +08:00
|
|
|
|
2023-07-26 11:13:45 +08:00
|
|
|
type Env struct {
|
|
|
|
}
|
|
|
|
|
2023-07-21 13:01:05 +08:00
|
|
|
type Setenv struct {
|
|
|
|
Path string `short:"p" long:"path" description:"Energy framework dir"`
|
|
|
|
}
|
|
|
|
|
2022-11-18 12:56:27 +08:00
|
|
|
type Version struct {
|
|
|
|
All bool `short:"a" long:"all" description:"show all"`
|
|
|
|
}
|
|
|
|
|
2023-09-02 23:57:26 +08:00
|
|
|
type Init struct {
|
2023-09-03 22:00:35 +08:00
|
|
|
Name string `short:"n" long:"name" description:"Initialized project name"`
|
|
|
|
ResLoad string `short:"r" long:"resload" description:"Resource loading method, 1: HTTP, 2: Local Load, default 1 HTTP"`
|
|
|
|
IGo bool
|
|
|
|
INSIS bool
|
|
|
|
IEnv bool
|
|
|
|
INpm bool
|
2022-11-09 12:12:40 +08:00
|
|
|
}
|
2023-08-18 18:20:52 +08:00
|
|
|
|
2023-08-20 21:51:12 +08:00
|
|
|
type Build struct {
|
2023-08-18 18:20:52 +08:00
|
|
|
}
|