Update index.js

fix port undefined
This commit is contained in:
ZZ
2023-06-09 13:30:49 +00:00
committed by GitHub
parent f0a2d09369
commit 0ce77efb6a

View File

@@ -3,9 +3,10 @@ process.env.NC_BINARY_BUILD = 'true';
try {
const app = require('express')();
const {Noco} = require("nocodb");
const httpServer = app.listen(process.env.PORT || 8080);
const port = process.env.PORT || 8080;
const httpServer = app.listen(port);
app.use(await Noco.init({}, httpServer, app));
console.log(`Visit : localhost:${process.env.PORT}/dashboard`)
console.log(`Visit : localhost:${port}/dashboard`)
} catch(e) {
console.log(e)
}