1
Fork 0

Use port number from config.json file

This commit is contained in:
Korbs 2023-11-22 22:46:19 -05:00
parent 17bb4d04d4
commit cfd6e8d9f9

View file

@ -16,6 +16,7 @@ const fetcher = require("../libpoketube/libpoketube-dislikes.js");
const core = require("../libpoketube/libpoketube-core.js");
const musicInfo = require("music-info");
const wiki = require("wikipedia");
const config = require("../../config.json")
const fetch = require("node-fetch");
const toJson = require("xml2json").toJson;
@ -40,10 +41,10 @@ function initlog(args) {
* Initializes the application and starts listening on the specified port or something idk aaaaa help me
*
* @param {object} app - The express application
* @param {string} [port="3000"] - The port to listen on
* @param {string} [port=config.server_port] - The port to listen on
*/
function init(app, port) {
if (!port) port = "6003";
if (!port) port = config.server_port;
try {
app.listen(port, () => {
initlog("Loading Poketube: success!" + " on port " + port);