forked from Superalgos/Superalgos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/Superalgos/Superalgos in…
…to develop
- Loading branch information
Showing
399 changed files
with
34,488 additions
and
20,394 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
exports.newDesktopAppFrontend = function newDesktopAppFrontend() { | ||
|
||
let thisObject = { | ||
run: run | ||
} | ||
|
||
return thisObject | ||
|
||
async function run() { | ||
|
||
await setupServices() | ||
|
||
async function setupServices() { | ||
|
||
let react = require('./frontend/scripts/start') | ||
let port = 33249; | ||
react.start(port); // todo get port from node config | ||
console.log(`react Interface ................................................ Listening at port ${port}`); | ||
|
||
} | ||
} | ||
} |
Oops, something went wrong.