You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now that developers can install new runtimes (#68), wws should pick the installed ones and run workers based on it. For that, it will identify the new file extensions to look for files and then, prepare the worker and configure the WASI context.
If a language runtime is present in the .wws.toml config (see #67) and it's not installed, wws will show a warning message indicating they are not installed and some workers won't run.
This will require a new src/runtimes/runtime/external.rs struct that properly configures the installed language runtime and the WASI context. All this must come from metadata as developers may create their own set of runtimes.
The text was updated successfully, but these errors were encountered:
Now that developers can install new runtimes (#68),
wws
should pick the installed ones and run workers based on it. For that, it will identify the new file extensions to look for files and then, prepare the worker and configure theWASI
context.If a language runtime is present in the
.wws.toml
config (see #67) and it's not installed,wws
will show a warning message indicating they are not installed and some workers won't run.This will require a new
src/runtimes/runtime/external.rs
struct that properly configures the installed language runtime and the WASI context. All this must come from metadata as developers may create their own set of runtimes.The text was updated successfully, but these errors were encountered: