You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
431 B
18 lines
431 B
import { createApp } from "@ldo/test-solid-server/dist/createServer";
|
|
import path from "path";
|
|
import { fileURLToPath } from "url";
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
|
|
async function run() {
|
|
const app = await createApp(
|
|
3004,
|
|
path.join(
|
|
__dirname,
|
|
"./configs/components-config/unauthenticatedServer.json",
|
|
),
|
|
);
|
|
await app.start();
|
|
}
|
|
run();
|
|
|