|
|
@@ -2,9 +2,23 @@
|
|
|
|
|
|
This is a WebSocket server that executes tasks using an agent.
|
|
|
|
|
|
+## Recommended Prerequisites
|
|
|
+
|
|
|
+- [Initialize the frontend code](../../frontend/README.md)
|
|
|
+- Install Python 3.12 (`brew install python` for those using homebrew)
|
|
|
+- Install pipx: (`brew install pipx` followed by `pipx ensurepath`)
|
|
|
+- Install poetry: (`pipx install poetry`)
|
|
|
+
|
|
|
## Install
|
|
|
|
|
|
-Follow the instructions in the base README.md to install dependencies and set up.
|
|
|
+First build a distribution of the frontend code (From the project root directory):
|
|
|
+```
|
|
|
+cd frontend
|
|
|
+npm install
|
|
|
+npm run build
|
|
|
+cd ..
|
|
|
+```
|
|
|
+Next run `poetry shell` (So you don't have to repeat `poetry run`)
|
|
|
|
|
|
## Start the Server
|
|
|
|