You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current version of the file has the following.
it prints out listening on http://localhost:1234
it's clearly listening on port 15000
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
var port = 15000;
var url = "http://localhost:" + 1234;
var express = require("express");
var app = express();
var oidc = require("./oidc");
oidc(url, app);
console.log("listening on " + url);
app.listen(port);