chore: action for releasing

Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
Pranav C
2022-06-23 11:49:55 +05:30
parent d133103285
commit 36cfb2c1c2
7 changed files with 236 additions and 37 deletions

View File

@@ -0,0 +1,11 @@
(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)
}
})()