Skip to content

Commit 920f123

Browse files
authored
Merge pull request #45 from agentic-community/fix/add-uv-docker-install-instructions
Fix #44: Add uv and Docker installation instructions to Quick Start
2 parents 2e66381 + 4c0c961 commit 920f123

File tree

3 files changed

+17
-250
lines changed

3 files changed

+17
-250
lines changed

GITHUB_ISSUE_CONTENT.md

Lines changed: 0 additions & 127 deletions
This file was deleted.

LOGGING_FORMAT_STANDARDIZATION_ISSUE.md

Lines changed: 0 additions & 121 deletions
This file was deleted.

README.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,22 @@ The deployment includes these containers:
288288
- `POLYGON_API_KEY`: For financial data tools (get from [Polygon.io](https://polygon.io/dashboard/signup))
289289
- `SECRET_KEY`: Auto-generated by build script if not provided
290290

291-
4. **Deploy with the build and run script:**
291+
4. **Install prerequisites (uv and Docker):**
292+
```bash
293+
# Install uv
294+
curl -LsSf https://astral.sh/uv/install.sh | sh
295+
source $HOME/.local/bin/env
296+
uv venv --python 3.12 && source .venv/bin/activate && uv pip install --requirement pyproject.toml
297+
298+
# Install Docker and Docker Compose
299+
sudo apt-get update
300+
sudo apt-get install --reinstall docker.io -y
301+
sudo apt-get install -y docker-compose
302+
sudo usermod -a -G docker $USER
303+
newgrp docker
304+
```
305+
306+
5. **Deploy with the build and run script:**
292307
```bash
293308
./build_and_run.sh
294309
```
@@ -300,7 +315,7 @@ The deployment includes these containers:
300315
- Start all services in the correct order
301316
- Verify service health and display status
302317

303-
5. **Access the Registry:**
318+
6. **Access the Registry:**
304319
Navigate to `http://localhost:7860` and you will have two authentication options:
305320

306321
**Option 1 - Amazon Cognito (Recommended for Production):**

0 commit comments

Comments
 (0)