Files
nocodb/scripts/pkg-executable/index.js
Pranav C 36cfb2c1c2 chore: action for releasing
Signed-off-by: Pranav C <pranavxc@gmail.com>
2022-06-23 11:49:55 +05:30

12 lines
321 B
JavaScript

(async () => {
try {
const app = require('express')();
const {Noco} = require("nocodb");
const httpServer = app.listen(process.env.PORT || 8080);
app.use(await Noco.init({}, httpServer, app));
console.log(`Visit : localhost:${process.env.PORT}/dashboard`)
} catch(e) {
console.log(e)
}
})()