feedless/web/lib/electron.js

7 lines
167 B
JavaScript
Raw Normal View History

const { app, shell } = require("electron");
2020-04-04 15:32:27 +02:00
app.whenReady().then(() => {
let port = process.env.PORT || 7624;
shell.openExternal(`http://localhost:${port}`);
2020-04-04 15:32:27 +02:00
});