Skip to content

Commit

Permalink
Fix the description
Browse files Browse the repository at this point in the history
  • Loading branch information
AnastasiaSliusar authored and JohanMabille committed Sep 26, 2024
1 parent 39d1502 commit f5dfa75
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Sometimes when installing multiple kernels, the JupyterLab launcher panel is cro

## Proposed Enhancement

The solution we are proposing consists of adding parameters to the kernel specs file in the form of a JSON Schema that would be added to the specs metadata. These parameters are then used to populate the `argv` and `env` lists (respectively the command-line arguments and environment variables).
The solution we are proposing consists of adding parameters to the kernel specs file in the form of a JSON Schema that would be added to the specs metadata. These parameters are then used to populate the `argv` list and `env` dict (respectively the command-line arguments and environment variables).

Upon starting a new kernel instance, a front-end form generated from the JSON schema is prompted to the user to fill the parameter values. Many tools are available to generate such forms, such as react-jsonschema-form.

Expand All @@ -41,9 +41,9 @@ As described in previous sections, we propose to parameterize the kernel specs f
"{connection_file}",
"-std=c++11"
],
env: [
"XEUS_LOGLEVEL=ERROR"
],
env: {
"XEUS_LOGLEVEL": "ERROR"
},
"language": "C++11"
}
```
Expand Down

0 comments on commit f5dfa75

Please sign in to comment.