Installation from Source
To contribute and submit changes to Stoobly, you must first install from the source code.
Prerequisite
Install poetry with the following command:
curl -sSL https://install.python-poetry.org | python3 -
Install
Download the agent source code:
git clone https://github.com/Stoobly/stoobly-agent.git
Change your directory to where you cloned it and run the install command:
poetry install
Run
To start the agent, run:
poetry run stoobly-agent run
The above command will expose the proxy on port 8080 and the UI on port 4200
Then you should see output like this to indicate that it started up successfully:
UI server listening at http://0.0.0.0:4200
INFO:root:app.settings.reload_settings
INFO:root:app.settings.reload_settings
Loading script /home/user/.local/lib/python3.8/site-packages/stoobly_agent/app/proxy/intercept_handler.py
Proxy server listening at http://*:8080
Last updated
Was this helpful?