Skip to content

Commit

Permalink
refactor: Update launchNextApp function in main.mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed Jul 18, 2024
1 parent 0848515 commit 9b13168
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const publishOptions = {
owner: 'valory-xyz',
repo: 'olas-operate-app',
releaseType: 'draft',
token: process.env.GH_TOKEN,
// token: process.env.GH_TOKEN,
private: false,
publishAutoUpdate: true,
};
Expand Down
2 changes: 1 addition & 1 deletion electron/main.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ async function launchNextApp() {
nextApp.getRequestHandler()(req, res);
});

logger.next('Listening to Next App Server on port', appConfig.ports.prod.next);
logger.next(`Listening to Next App Server on port ${appConfig.ports.prod.next}`);
server.listen(appConfig.ports.prod.next, (out)=>{
logger.next(out);
});
Expand Down

0 comments on commit 9b13168

Please sign in to comment.