-
Notifications
You must be signed in to change notification settings - Fork 199
/
silverbullet.ts
executable file
·107 lines (102 loc) · 3.08 KB
/
silverbullet.ts
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
import.meta.main = false;
import { Command } from "cliffy/command/command.ts";
import { version } from "./version.ts";
import { upgradeCommand } from "./cmd/upgrade.ts";
import { versionCommand } from "./cmd/version.ts";
import { serveCommand } from "./cmd/server.ts";
import { plugCompileCommand } from "./cmd/plug_compile.ts";
import { plugRunCommand } from "./cmd/plug_run.ts";
import { syncCommand } from "./cmd/sync.ts";
// Unhandled rejection, let's not crash
globalThis.addEventListener("unhandledrejection", (event) => {
console.error("Unhandled rejection:", event);
event.preventDefault();
});
await new Command()
.name("silverbullet")
.description("Note taking for knowledge hackers")
.version(version)
.help({
colors: false,
})
.usage("<options> <folder> | <command> (see below)")
// Main command
.arguments("[folder:string]")
.option(
"--hostname, -L <hostname:string>",
"Hostname or address to listen on",
)
.option("-p, --port <port:number>", "Port to listen on")
.option(
"--user <user:string>",
"'username:password' combo for authentication",
)
.option(
"--cert <certFile:string>",
"Path to TLS certificate",
)
.option(
"--key <keyFile:string>",
"Path to TLS key",
)
.option(
"--sync-only",
"Run the server as a pure space (file) store only without any backend processing (this disables 'online mode' in the client)",
)
.option(
"--reindex",
"Reindex space on startup",
)
.option(
"--db <db:string>",
"Path to database file",
)
.action(serveCommand)
// plug:compile
.command("plug:compile", "Bundle (compile) one or more plug manifests")
.arguments("<...name.plug.yaml:string>")
.option("--debug", "Do not minifiy code", { default: false })
.option("--info", "Print out size info per function", {
default: false,
})
.option("--watch, -w [type:boolean]", "Watch for changes and rebuild", {
default: false,
})
.option(
"--dist <path:string>",
"Folder to put the resulting .plug.json file into",
{ default: "." },
)
.option("--importmap <path:string>", "Path to import map file to use")
.option("-c, --config <path:string>", "Path to deno.json file to use")
.option("--runtimeUrl <url:string>", "URL to worker_runtime.ts to use")
.action(plugCompileCommand)
// plug:run
.command("plug:run", "Run a PlugOS function from the CLI")
.arguments("<spacePath> [function] [...args:string]")
.option(
"--hostname, -L <hostname:string>",
"Hostname or address to listen on",
)
.option("-p, --port <port:number>", "Port to listen on")
.action(plugRunCommand)
// upgrade
.command("upgrade", "Upgrade SilverBullet")
.action(upgradeCommand)
// sync
.command("sync", "Synchronize two spaces")
.option(
"--snapshot <snapshot:string>",
"Path to state file to use",
)
.option(
"--wipe-secondary",
"Wipe secondary and perform a full sync",
)
.arguments("<primary:string> <secondary:string>")
.action(syncCommand)
// version
.command("version", "Get current version")
.action(versionCommand)
.parse(Deno.args);
Deno.exit(0);