-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PE-357: Fix externally filed issue against this repository #74
base: main
Are you sure you want to change the base?
Changes from all commits
f0dbf1f
7e2f50a
f3b8e1f
0a7dd62
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
REACT_APP_PORT=8020 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,12 +6,13 @@ function main() | |
enableLDWS() | ||
' Enable SSH | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please format/align the comments and method calls correctly. |
||
enableSSH() | ||
|
||
' Initialize roNodeJs with path or correct filename, whether webpack is used or not. | ||
node_js = CreateObject("roNodeJs", "sd:/dist/backend.js", {message_port: mp, node_arguments: ["--inspect=0.0.0.0:2999"], arguments: []}) | ||
|
||
' Create HTML Widget | ||
widget = createHTMLWidget(mp) | ||
widget.Show() | ||
|
||
' Initialize roNodeJs with path or correct filename, whether webpack is used or not. | ||
node_js = CreateObject("roNodeJs", "sd:/dist/backend.js", {message_port: mp, node_arguments: ["--inspect=0.0.0.0:2999"], arguments: []}) | ||
|
||
'Event Loop | ||
while true | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does this not need the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is moving this line before creating the HTML widget creation, part of the solution?