summaryrefslogtreecommitdiff
path: root/extension/scripts
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-01 23:47:38 -0400
committerNate Sesti <sestinj@gmail.com>2023-06-01 23:47:38 -0400
commit5fb7e9931eef72eeb83405edfade978c556c2689 (patch)
tree695164702ef5e26dcdc8540607339602dbcbe5ac /extension/scripts
parent33687068f6641b16b0772f98492ef808ceef7841 (diff)
downloadsncontinue-5fb7e9931eef72eeb83405edfade978c556c2689.tar.gz
sncontinue-5fb7e9931eef72eeb83405edfade978c556c2689.tar.bz2
sncontinue-5fb7e9931eef72eeb83405edfade978c556c2689.zip
Edits and braindumps in docs
Diffstat (limited to 'extension/scripts')
-rw-r--r--extension/scripts/README.md2
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.