Skip to content

Commit 6bb8fbb

Browse files
authored
cleanup (#538)
1 parent c74a7e8 commit 6bb8fbb

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

clients/js/packages/cli/src/utils.ts

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ export const loadConfig = (argv: any): Config => {
4848
} as StarshipContext;
4949
let starship: StarshipConfig = {} as StarshipConfig;
5050

51-
console.log('context', context);
52-
5351
// Override context with command-line arguments dynamically based on StarshipContext keys
5452
params.forEach((key) => {
5553
if (argv[key] !== undefined) {
@@ -64,8 +62,6 @@ export const loadConfig = (argv: any): Config => {
6462
starship = loadYaml(context.config) as StarshipConfig;
6563
}
6664

67-
console.log('starship: ', starship);
68-
6965
return { context, starship };
7066
};
7167

@@ -97,12 +93,15 @@ Command-line Options:
9793
Examples:
9894
$ starship start --config ./config/two-chain.yaml
9995
$ starship stop --config ./config/two-chain.yaml
100-
96+
97+
If you want to setup starship for the first time
98+
$ starship setup
99+
101100
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
106105
107106
Additional Help:
108107
$ starship help Display this help information.

0 commit comments

Comments
 (0)