agent/README.md
jingrow 6e4a71e6c9
Some checks are pending
Agent Tests / Lint and Format (push) Waiting to run
Agent Tests / Unit Tests (push) Waiting to run
已适配jingrow
2025-05-14 14:37:30 +08:00

42 lines
764 B
Markdown

# Agent
## Installation
```
mkdir agent && cd agent
git clone http://git.jingrow.com:3000/jingrow/agent repo
virtualenv env
source env/bin/activate
pip install -e ./repo
cp repo/redis.conf .
cp repo/Procfile .
```
## Running
```
honcho start
```
## CLI
Agent has a CLI
([ref](http://git.jingrow.com:3000/jingrow/agent/blob/master/agent/cli.py)). You can
access this by activating the env:
```bash
# Path to your agent's Python env might be different
source ./agent/env/bin/activate
agent --help
```
Once you have activated the env, you can access the iPython console:
```bash
agent console
```
This should have the server object instantiated if it was able to find the
`config.json` file. If not you can specify the path (check `agent console --help`).