@@ -48,8 +48,6 @@ export const loadConfig = (argv: any): Config => {
48
48
} as StarshipContext ;
49
49
let starship : StarshipConfig = { } as StarshipConfig ;
50
50
51
- console . log ( 'context' , context ) ;
52
-
53
51
// Override context with command-line arguments dynamically based on StarshipContext keys
54
52
params . forEach ( ( key ) => {
55
53
if ( argv [ key ] !== undefined ) {
@@ -64,8 +62,6 @@ export const loadConfig = (argv: any): Config => {
64
62
starship = loadYaml ( context . config ) as StarshipConfig ;
65
63
}
66
64
67
- console . log ( 'starship: ' , starship ) ;
68
-
69
65
return { context, starship } ;
70
66
} ;
71
67
@@ -97,12 +93,15 @@ Command-line Options:
97
93
Examples:
98
94
$ starship start --config ./config/two-chain.yaml
99
95
$ starship stop --config ./config/two-chain.yaml
100
-
96
+
97
+ If you want to setup starship for the first time
98
+ $ starship setup
99
+
101
100
If you want to run the deployment step by step
102
- $ starship deploy --config ./config/two-chain.yaml
103
- $ starship start-ports --config ./config/two-chain.yaml
104
- $ starship stop-ports --config ./config/two-chain.yaml
105
- $ starship stop --config ./config/two-chain.yaml
101
+ $ starship deploy --config ./config/two-chain.yaml
102
+ $ starship start-ports --config ./config/two-chain.yaml
103
+ $ starship stop-ports --config ./config/two-chain.yaml
104
+ $ starship delete --config ./config/two-chain.yaml
106
105
107
106
Additional Help:
108
107
$ starship help Display this help information.
0 commit comments