File tree Expand file tree Collapse file tree 3 files changed +17
-250
lines changed Expand file tree Collapse file tree 3 files changed +17
-250
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -288,7 +288,22 @@ The deployment includes these containers:
288
288
- ` POLYGON_API_KEY` : For financial data tools (get from [Polygon.io](https://polygon.io/dashboard/signup))
289
289
- ` SECRET_KEY` : Auto-generated by build script if not provided
290
290
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:**
292
307
` ` ` bash
293
308
./build_and_run.sh
294
309
` ` `
@@ -300,7 +315,7 @@ The deployment includes these containers:
300
315
- Start all services in the correct order
301
316
- Verify service health and display status
302
317
303
- 5 . ** Access the Registry:**
318
+ 6 . ** Access the Registry:**
304
319
Navigate to ` http://localhost:7860` and you will have two authentication options:
305
320
306
321
** Option 1 - Amazon Cognito (Recommended for Production):**
You can’t perform that action at this time.
0 commit comments