-
Notifications
You must be signed in to change notification settings - Fork 168
Add Web UI to Spring Shell demo #366
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
base: master
Are you sure you want to change the base?
Conversation
The Wasm code runs in a Web Worker, which is fed commands as the user types them in.
| @@ -0,0 +1,74 @@ | |||
| import { AnsiUp } from "./ansi_up.js"; | |||
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.
Add copyright header
| </executions> | ||
| <configuration> | ||
| <imageName>../web/wasm-spring-shell</imageName> | ||
| <buildArgs> |
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.
I think with something like this, you can append -H:-AutoRunVM to the default list, and not repeat and override it:
| <buildArgs> | |
| <buildArgs combine.children="append"> |
| @@ -0,0 +1,10 @@ | |||
| globalThis.sharedBuffer = new SharedArrayBuffer(65536); | |||
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.
Add copyright header
| @@ -0,0 +1,46 @@ | |||
| package com.example.wasm_spring_shell.web; | |||
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.
Add copyright header
| @@ -0,0 +1,72 @@ | |||
| package com.example.wasm_spring_shell.web; | |||
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.
Add copyright header, here and in all other .java files
The Wasm code runs in a Web Worker, which is fed commands as the user types them in.