From 165c17e9f4618b906201969449e786b3ca17f165 Mon Sep 17 00:00:00 2001 From: hhh Date: Sun, 21 Jul 2024 13:14:35 +0300 Subject: [PATCH] change default port --- api/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/index.js b/api/index.js index 35b7b47..aef4492 100644 --- a/api/index.js +++ b/api/index.js @@ -2,7 +2,7 @@ const Signer = require("../src/Signer"); const http = require("http"); const Utils = require("../src/Utils"); -const PORT = process.env.PORT || 8080; +const PORT = process.env.PORT || 60103; const signer = new Signer();