-
Notifications
You must be signed in to change notification settings - Fork 59
/
vector-web-setup.js
executable file
·44 lines (38 loc) · 1.25 KB
/
vector-web-setup.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
#!/usr/bin/env node
/* Copyright (c) 2019-2020 Digital Dream Labs. See LICENSE file for details. */
var commander = require("commander");
const program = new commander.Command();
program
.version("1.0.0", "-v, --version")
.description(
" __ ________ _____ _______ ____ _____ \n" +
" \\ \\ / / ____/ ____|__ __/ __ \\| __ \\ \n" +
" \\ \\ / /| |__ | | | | | | | | |__) |\n" +
" \\ \\/ / | __|| | | | | | | | _ / \n" +
" \\ / | |___| |____ | | | |__| | | \\ \\ \n" +
" \\/ |______\\_____| |_| \\____/|_| \\_\\ \n\n"
)
.addCommand(require("./tools/configure.js"))
.addCommand(require("./tools/ota.js").otaAdd)
.addCommand(require("./tools/ota.js").otaSync)
.addCommand(require("./tools/ota.js").otaApprove)
.exitOverride(() => {
process.exit(0);
});
program
.command("serve")
.description("Serve the vector websetup")
.option("-p, --port <number>", "port to serve the setup on", 8000)
.option(
"-ip, --ip-address <addr>",
"address to serve the setup on",
"0.0.0.0"
)
.action((options) => {
try {
require("./tools/run.js")(options.port, options.ipAddress);
} catch (err) {
console.log(err);
}
});
program.parse(process.argv);