We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df383b8 commit 991fa2aCopy full SHA for 991fa2a
1 file changed
packages/uma/bin/demo.js
@@ -2,12 +2,10 @@ const path = require('path');
2
const { ComponentsManager } = require('componentsjs');
3
const { setGlobalLoggerFactory, WinstonLoggerFactory } = require('@solid/community-server');
4
5
-const protocol = process.env.UMA_DEMO_PROTOCOL ?? 'http';
6
-const host = process.env.UMA_DEMO_HOST ?? 'localhost';
7
const port = process.env.UMA_DEMO_PORT ?? 4000;
8
const policiesUrl = process.env.UMA_DEMO_POLICIES ?? 'http://localhost:3000/settings/policies/';
9
10
-const baseUrl = `${protocol}://${host}:${port}/uma`;
+const baseUrl = `http://localhost:${port}/uma`;
11
const rootDir = path.join(__dirname, '../');
12
13
const launch = async () => {
0 commit comments