diff options
author | Nate Sesti <33237525+sestinj@users.noreply.github.com> | 2023-07-10 23:36:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-10 23:36:46 -0700 |
commit | 3dc307bc9add75fba1f66c51218f0c32637e21fe (patch) | |
tree | 67a28ed86a73b3f89f75b60ca6e03d959d550cfc /extension/scripts/README.md | |
parent | a8795b929bb18f623a64fedcdbb83a790266943b (diff) | |
parent | 10f5c2beb34e755c1fedf637186bace6b030e44d (diff) | |
download | sncontinue-3dc307bc9add75fba1f66c51218f0c32637e21fe.tar.gz sncontinue-3dc307bc9add75fba1f66c51218f0c32637e21fe.tar.bz2 sncontinue-3dc307bc9add75fba1f66c51218f0c32637e21fe.zip |
Merge pull request #233 from continuedev/faster-load
Faster load
Diffstat (limited to 'extension/scripts/README.md')
-rw-r--r-- | extension/scripts/README.md | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/extension/scripts/README.md b/extension/scripts/README.md deleted file mode 100644 index da1ad493..00000000 --- a/extension/scripts/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# 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 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. |