diff --git a/CHANGELOG.md b/CHANGELOG.md index c3019c0..2041b80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,10 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Changed -- **Simplified Configuration** - Removed `RUNTIME_ENV_PATH` environment variable - - No longer needed in docker-compose.yml or .env.example - - API mode dynamically manages runtime configs via `RuntimeConfigManager` - - Legacy tools gracefully handle missing `RUNTIME_ENV_PATH` +- **Simplified Configuration** - Removed unnecessary environment variables + - Removed `RUNTIME_ENV_PATH` (API dynamically manages runtime configs) + - Removed `API_PORT` from container environment (only used for host port mapping) + - Container always uses port 8080 internally (hardcoded in entrypoint.sh) + - API_PORT in .env only controls host-side port mapping - Reduces configuration complexity for new deployments ## [0.3.0] - 2025-10-31 diff --git a/docker-compose.yml b/docker-compose.yml index f00e5d4..804a720 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -24,9 +24,6 @@ services: - TRADE_HTTP_PORT=8002 - GETPRICE_HTTP_PORT=8003 - # API Configuration - - API_PORT=${API_PORT:-8080} - # Agent Configuration - AGENT_MAX_STEP=${AGENT_MAX_STEP:-30} ports: