Skip to content

Commit 1f8fd6d

Browse files
E8-T3: Add detailed port configuration comments for clarity
Co-authored-by: dylan-mccarthy <[email protected]>
1 parent b50a73d commit 1f8fd6d

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

demo-invoice-classifier-noninteractive.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ RED='\033[0;31m'
2323
NC='\033[0m'
2424

2525
# Configuration
26+
# Note: This demo uses Docker Compose which exposes the Control Plane on port 8080.
27+
# When running locally with 'dotnet run', the API uses port 5109 instead.
28+
# The agent seed script will use the CONTROL_PLANE_URL environment variable.
2629
CONTROL_PLANE_URL="${CONTROL_PLANE_URL:-http://localhost:8080}" # Docker Compose port (local dev uses 5109)
2730
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
2831
TIMEOUT=120

demo-invoice-classifier.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ BOLD='\033[1m'
3434
NC='\033[0m' # No Color
3535

3636
# Configuration
37+
# Note: This demo uses Docker Compose which exposes the Control Plane on port 8080.
38+
# When running locally with 'dotnet run', the API uses port 5109 instead.
39+
# The agent seed script will use the CONTROL_PLANE_URL environment variable.
3740
CONTROL_PLANE_URL="${CONTROL_PLANE_URL:-http://localhost:8080}" # Docker Compose port (local dev uses 5109)
3841
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
3942

0 commit comments

Comments
 (0)