File tree Expand file tree Collapse file tree 3 files changed +45
-1
lines changed Expand file tree Collapse file tree 3 files changed +45
-1
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 0.2.0" ,
3
+ "configurations" : [
4
+ {
5
+ "name" : " scalsun run" ,
6
+ "type" : " go" ,
7
+ "request" : " launch" ,
8
+ "mode" : " auto" ,
9
+ "program" : " ${workspaceRoot}/cmd/scaling-instance.go" ,
10
+ "args" : [
11
+ //"--verbose"
12
+ ],
13
+ "env" : {
14
+ "PLATFORMSH_CLI_TOKEN" : " " ,
15
+ "UPSUN_CLI_TOKEN" : " " ,
16
+ "PLATFORM_PROJECT" : " 3lgb35gy6kcho" ,
17
+ "PLATFORM_BRANCH" : " master" ,
18
+
19
+ }
20
+ },
21
+ {
22
+ "name" : " scalsun help" ,
23
+ "type" : " go" ,
24
+ "request" : " launch" ,
25
+ "mode" : " auto" ,
26
+ "program" : " ${workspaceRoot}/cmd/scaling-instance.go" ,
27
+ "args" : [
28
+ " --help"
29
+ ],
30
+ "env" : {
31
+ }
32
+ },
33
+ ]
34
+ }
Original file line number Diff line number Diff line change
1
+ package api
2
+
3
+ import (
4
+ "github.com/upsun/lib-sun/entity"
5
+ "github.com/upsun/scalsun/internal/logic"
6
+ )
7
+
8
+ func ScalingInstance (projectContext entity.ProjectGlobal ) {
9
+ logic .ScalingInstance (projectContext )
10
+ }
Original file line number Diff line number Diff line change 4
4
entity "github.com/upsun/lib-sun/entity"
5
5
)
6
6
7
- const VERSION = "0.3.0 "
7
+ const VERSION = "development "
8
8
9
9
var (
10
10
Args entity.CliCommonArgs
You can’t perform that action at this time.
0 commit comments