This is a temporary package to easily init the Community Solid Server in scripts until CommunitySolidServer/CommunitySolidServer#1509 is released.
import { createApp } from '@jeswr/css-init-utils';
function main() {
const app = createApp({
port: 3_002,
seededPodConfigJson: path.join(__dirname, 'configs', 'solid-css-seed.json'),
});
await app.start();
}
main();
©2023–present Jesse Wright, MIT License.