1
0
Fork 0
mirror of https://github.com/kou029w/daraz-san.git synced 2025-01-18 16:08:06 +00:00

use port number 8080

This commit is contained in:
Nebel 2019-07-30 09:23:20 +09:00 committed by GitHub
parent 675434c937
commit 03e21c6ce4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
app.js
View file

@ -9,6 +9,6 @@ const app = daraz(
);
(async () => {
await app.start(process.env.PORT || 80);
await app.start(process.env.PORT || 8080);
console.log("Daraz-san ⚡ running");
})();