diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-02 19:45:17 -0400 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-02 19:45:17 -0400 |
commit | bd7d3b8e524324a78667ca3eee01f9d7ae1181f3 (patch) | |
tree | f481a49b63d89ef5d667dce0ec9a4b791786834e /extension/scripts | |
parent | 57c3b77a5fe9ca73fb54d2c518470ef834aa9d72 (diff) | |
parent | 8970af9e695fe8196f4f3b61dd16271ae733f630 (diff) | |
download | sncontinue-bd7d3b8e524324a78667ca3eee01f9d7ae1181f3.tar.gz sncontinue-bd7d3b8e524324a78667ca3eee01f9d7ae1181f3.tar.bz2 sncontinue-bd7d3b8e524324a78667ca3eee01f9d7ae1181f3.zip |
Merge branch 'docs'
Diffstat (limited to 'extension/scripts')
-rw-r--r-- | extension/scripts/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/scripts/README.md b/extension/scripts/README.md index 0f851cb4..da1ad493 100644 --- a/extension/scripts/README.md +++ b/extension/scripts/README.md @@ -1,5 +1,5 @@ # Scripts -Whenever we need python to run on the client side, we include a script file at the top level of this folder. All other files that are not to be run directly as a script (utility files) should be in a subfolder of `scripts`. You can call one of these scripts from the VSCode extension using the `runPythonScript` function in `bridge.ts`. +Whenever we need python to run on the client side, we include a script file at the top level of this folder. All other files that are not to be run directly as a script (utility files) should be in a subfolder of `scripts`. You can call one of these scripts from the VS Code extension using the `runPythonScript` function in `bridge.ts`. When the extension is activated (`activate` function in `src/extension.ts`), we call `setupPythonEnv`, which makes the virtual environment and downloads all the necessary requirements as given in `requirements.txt`. With this in mind, be sure to run `pip freeze > requirements.txt` whenever you add a new requirement. |