summaryrefslogtreecommitdiff
path: root/extension/scripts/README.md
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-09 16:19:16 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-09 16:19:16 -0700
commitd566dc90a32db926393e1d10f983c79bc3feb56a (patch)
treecfe001109586d0758ca93d699bb449f45d14c34f /extension/scripts/README.md
parent20f4d07eb1d584569752e67c754951b7892e3e6b (diff)
downloadsncontinue-d566dc90a32db926393e1d10f983c79bc3feb56a.tar.gz
sncontinue-d566dc90a32db926393e1d10f983c79bc3feb56a.tar.bz2
sncontinue-d566dc90a32db926393e1d10f983c79bc3feb56a.zip
cache server env in .continue folder
Diffstat (limited to 'extension/scripts/README.md')
-rw-r--r--extension/scripts/README.md5
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.