summaryrefslogtreecommitdiff
path: root/continuedev/README.md
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-01 21:15:42 -0400
committerNate Sesti <sestinj@gmail.com>2023-06-01 21:15:42 -0400
commitad76b18ef2489cfec9929c8127704122a66809be (patch)
treeebe7dc9d90f896498814a1959353554b5f6c2692 /continuedev/README.md
parent37dbfc0102b6d67b47b8886e78e57c5998655fc9 (diff)
parent30ad5dbe8edfd46a97e395b8837d68a29800df6a (diff)
downloadsncontinue-ad76b18ef2489cfec9929c8127704122a66809be.tar.gz
sncontinue-ad76b18ef2489cfec9929c8127704122a66809be.tar.bz2
sncontinue-ad76b18ef2489cfec9929c8127704122a66809be.zip
Merge branch 'main' of https://github.com/continuedev/continue
Diffstat (limited to 'continuedev/README.md')
-rw-r--r--continuedev/README.md24
1 files changed, 10 insertions, 14 deletions
diff --git a/continuedev/README.md b/continuedev/README.md
index 5658e8de..a1ddb084 100644
--- a/continuedev/README.md
+++ b/continuedev/README.md
@@ -1,27 +1,23 @@
-# Continue
+# Continue PyPI Package
Continue is a Python library for automating repetitive sequences of software development tasks using language models. Using our VS Code extension, you can build, run, and refine these recipes as they natively interact with your codebase. Download on [our GitHub](https://github.com/continuedev/continue).
-## Steps to start
+## Continue Server
-- `cd continue/continue`
+The Continue server acts as a bridge between the Continue React app and your IDE, running your recipes and acting on the codebase. Start it by running the following commands:
+
+- `cd continuedev`
- Make sure packages are installed with `poetry install`
- `poetry shell`
- `cd ..`
-- `python3 -m continuedev.src.continuedev`
-
-## Steps to generate JSON Schema
-
-Same up until last step and then `python3 -m continuedev.src.scripts.gen_json_schema`.
-
-## Start the server
+- `python3 -m continuedev.src.continuedev.server.main`
-Same steps, then `uvicorn continue.src.server.main:app --reload`.
+## Scripts
-## To build
+`poetry run typegen` to generate JSONSchema .json files from the Pydantic types defined in the `models` directory.
-Run `poetry build` and it will output wheel and tarball files in `./dist`.
+`poetry build` will output wheel and tarball files in `./dist`.
## Writing Steps
-See the `src/continuedev/libs/steps` folder for examples of writing a Continue step.
+See the `src/continuedev/libs/steps` folder for examples of writing a Continue step. See our documentation for tutorials.