Skip to content

Commit

Permalink
fix: incorrect root server name in configs
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensworks committed Sep 1, 2020
1 parent 0a0f44c commit ec69459
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/presets/setup.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld",
"@graph": [
{
"@id": "urn:solid-server:my",
"@id": "urn:solid-server:default",
"@type": "Setup",
"Setup:_httpServer": {
"@id": "urn:solid-server:default:HttpServer"
Expand Down
2 changes: 1 addition & 1 deletion src/init/CliRunner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const runCustom = function(
const loader = new Loader(properties);
await loader.registerAvailableModuleResources();
const setup: Setup = await loader
.instantiateFromUrl('urn:solid-server:my', configPath);
.instantiateFromUrl('urn:solid-server:default', configPath);
resolve(await setup.setup({ port: argv.port }));
}).then((runtimeConfig: RuntimeConfig): void => {
stdout.write(`Running at ${runtimeConfig.base}\n`);
Expand Down

0 comments on commit ec69459

Please sign in to comment.