forked from MystenLabs/sui-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
154 lines (131 loc) · 3.91 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#!/usr/bin/env node
import chalk from "chalk";
import { Command } from "commander";
import { readFileSync } from "node:fs";
import path from "node:path";
import pm2 from "pm2";
import { fileURLToPath } from "url";
// @todo Read project name and new-issue url from package.json.
const APP_NAME = "Local Sui Explorer";
const APP_URL = "http://localhost:9001";
const REPORT_ISSUE_URL = "https://github.com/suiware/sui-explorer/issues/new";
const main = async () => {
// Commands.
const program = new Command();
program
.name("sui-explorer-local")
.description(`Easily manage ${APP_NAME}`)
.version(_getPackageVersion());
program
.command("start")
.description(`Start ${APP_NAME}`)
.option("-v, --verbose", "display logs")
.action((options) => {
pm2.connect(function (err) {
if (err) {
_displayErrorMessage(`Could not start ${APP_NAME}`);
options.verbose && err && console.error(err);
process.exit(1);
}
pm2.start(
{
name: "sui-explorer-local",
script: "serve",
env: {
PM2_SERVE_PATH: path.join(
_getCliDirectory(),
"/apps/explorer/build/"
),
PM2_SERVE_PORT: 9001,
PM2_SERVE_SPA: "true",
},
},
(err, apps) => {
pm2.disconnect();
if (err) {
_displayErrorMessage(`Could not start ${APP_NAME}`);
options.verbose && console.error(err);
process.exit(1);
}
}
);
});
_displaySuccessMessage(`${APP_NAME} started on ${APP_URL}`);
});
program
.command("stop")
.description(`Stop ${APP_NAME}`)
.option("-v, --verbose", "display logs")
.action((options) => {
pm2.connect(function (err) {
if (err) {
_displayErrorMessage(`Could not stop ${APP_NAME}`);
options.verbose && err && console.error(err);
process.exit(1);
}
pm2.stop("sui-explorer-local", (err, apps) => {
pm2.disconnect();
if (err) {
_displayErrorMessage(`Could not stop ${APP_NAME}`);
options.verbose && console.error(err);
process.exit(1);
}
});
});
_displaySuccessMessage(`${APP_NAME} stopped`);
});
program
.command("restart")
.description(`Restart ${APP_NAME}`)
.option("-v, --verbose", "display logs")
.action((options) => {
pm2.connect(function (err) {
if (err) {
_displayErrorMessage(`Could not restart ${APP_NAME}`);
options.verbose && err && console.error(err);
process.exit(1);
}
pm2.restart("sui-explorer-local", (err, apps) => {
pm2.disconnect();
if (err) {
_displayErrorMessage(`Could not restart ${APP_NAME}`);
options.verbose && err && console.error(err);
process.exit(1);
// throw err;
}
});
});
_displaySuccessMessage(`${APP_NAME} restarted on ${APP_URL}`);
});
program.parse();
};
const _getCliDirectory = () => {
const currentFileUrl = import.meta.url;
return path.dirname(decodeURI(fileURLToPath(currentFileUrl)));
};
const _getPackageVersion = () => {
try {
const packageFile = readFileSync(
path.join(_getCliDirectory(), "/package.json"),
"utf8"
);
const packageMeta = JSON.parse(packageFile);
return packageMeta.version;
} catch (e) {
_displayErrorMessage(
`Cannot read package meta-data. Please report the issue ${REPORT_ISSUE_URL}`
);
console.error(e);
process.exit(1);
}
};
const _displayErrorMessage = (message) => {
console.error(chalk.red(message));
};
const _displaySuccessMessage = (message) => {
console.log(chalk.green(message));
};
// Main entry point.
main().catch((e) => {
console.error(chalk.red(e));
});