1
0
silverbullet/cmd/server.ts

36 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-10-24 11:51:26 +00:00
import { path } from "../server/deps.ts";
import { HttpServer } from "../server/http_server.ts";
import assetBundle from "../dist/asset_bundle.json" assert { type: "json" };
import { AssetBundle, AssetJson } from "../plugos/asset_bundle/bundle.ts";
export function serveCommand(options: any, folder: string) {
const pagesPath = path.resolve(Deno.cwd(), folder);
2022-12-16 12:00:06 +00:00
const hostname = options.hostname || "127.0.0.1";
2022-10-24 11:51:26 +00:00
const port = options.port || 3000;
console.log(
2022-12-16 12:00:06 +00:00
"Going to start Silver Bullet binding to",
`${hostname}:${port}`,
2022-10-24 11:51:26 +00:00
);
2022-12-16 12:00:06 +00:00
console.log("Serving pages from", pagesPath);
if (hostname === "127.0.0.1") {
console.log(
`_Note:_ Silver Bullet will only be available locally (via http://localhost:${port}), to allow outside connections, pass --host 0.0.0.0 as a flag.`,
);
}
2022-10-24 11:51:26 +00:00
const httpServer = new HttpServer({
hostname,
2022-10-24 11:51:26 +00:00
port: port,
pagesPath: pagesPath,
2022-11-26 13:15:38 +00:00
dbPath: path.join(pagesPath, options.db),
2022-10-24 11:51:26 +00:00
assetBundle: new AssetBundle(assetBundle as AssetJson),
2022-12-05 11:14:21 +00:00
user: options.user,
2022-10-24 11:51:26 +00:00
});
httpServer.start().catch((e) => {
console.error("HTTP Server error", e);
Deno.exit(1);
2022-10-24 11:51:26 +00:00
});
}