1
0
silverbullet/cmd/server.ts

89 lines
2.5 KiB
TypeScript
Raw Normal View History

import { Application } from "../server/deps.ts";
2022-10-24 11:51:26 +00:00
import { HttpServer } from "../server/http_server.ts";
import clientAssetBundle from "../dist/client_asset_bundle.json" assert {
type: "json",
};
import plugAssetBundle from "../dist/plug_asset_bundle.json" assert {
type: "json",
};
2022-10-24 11:51:26 +00:00
import { AssetBundle, AssetJson } from "../plugos/asset_bundle/bundle.ts";
2023-08-29 19:17:29 +00:00
import { sleep } from "$sb/lib/async.ts";
import { determineDatabaseBackend } from "../server/db_backend.ts";
import { SpaceServerConfig } from "../server/instance.ts";
import { path } from "../common/deps.ts";
2022-10-24 11:51:26 +00:00
export async function serveCommand(
2023-08-26 06:31:51 +00:00
options: {
hostname?: string;
port?: number;
user?: string;
auth?: string;
cert?: string;
key?: string;
reindex?: boolean;
},
folder?: string,
) {
2023-08-11 18:37:13 +00:00
const hostname = options.hostname || Deno.env.get("SB_HOSTNAME") ||
"127.0.0.1";
const port = options.port ||
(Deno.env.get("SB_PORT") && +Deno.env.get("SB_PORT")!) || 3000;
2023-08-26 06:31:51 +00:00
const app = new Application();
2022-10-24 11:51:26 +00:00
if (!folder) {
// Didn't get a folder as an argument, check if we got it as an environment variable
folder = Deno.env.get("SB_FOLDER");
if (!folder) {
console.error(
"No folder specified. Please pass a folder as an argument or set SB_FOLDER environment variable.",
);
Deno.exit(1);
}
}
folder = path.resolve(Deno.cwd(), folder);
const baseKvPrimitives = await determineDatabaseBackend(folder);
2022-10-24 11:51:26 +00:00
console.log(
"Going to start SilverBullet binding to",
`${hostname}:${port}`,
2022-10-24 11:51:26 +00:00
);
2022-12-16 12:00:06 +00:00
if (hostname === "127.0.0.1") {
console.info(
`SilverBullet will only be available locally (via http://localhost:${port}).
To allow outside connections, pass -L 0.0.0.0 as a flag, and put a TLS terminator on top.`,
2022-12-16 12:00:06 +00:00
);
}
2022-10-24 11:51:26 +00:00
const userAuth = options.user ?? Deno.env.get("SB_USER");
2023-08-26 06:31:51 +00:00
const configs = new Map<string, SpaceServerConfig>();
configs.set("*", {
hostname,
namespace: "*",
auth: userAuth,
pagesPath: folder,
});
const httpServer = new HttpServer({
2023-08-29 19:17:29 +00:00
app,
hostname,
port,
clientAssetBundle: new AssetBundle(clientAssetBundle as AssetJson),
plugAssetBundle: new AssetBundle(plugAssetBundle as AssetJson),
baseKvPrimitives,
syncOnly: baseKvPrimitives === undefined,
keyFile: options.key,
certFile: options.cert,
configs,
});
httpServer.start();
2023-08-26 06:31:51 +00:00
// Wait in an infinite loop (to keep the HTTP server running, only cancelable via Ctrl+C or other signal)
while (true) {
2023-08-26 06:31:51 +00:00
await sleep(10000);
}
2022-10-24 11:51:26 +00:00
}