webapp-scaffold can not reference code in higher level app (#314)

This commit is contained in:
Dave Horton
2023-04-12 07:54:21 -04:00
committed by GitHub
parent 9942313ea1
commit 5c2630fe1f

View File

@@ -1,8 +1,7 @@
const express = require('express');
const app = express();
const Websocket = require('ws');
const {PORT} = require('../../lib/config');
const listenPort = PORT;
const listenPort = process.env.HTTP_PORT || 3000;
let json_mapping = new Map();
let hook_mapping = new Map();
let ws_packet_count = new Map();