mirror of
https://github.com/Xe138/AI-Trader.git
synced 2026-04-02 01:27:24 -04:00
The web UI (docs/index.html, portfolio.html) exists but is not served in API mode. Removing the port configuration to eliminate confusion. Changes: - Remove port 8888 mapping from docker-compose.yml - Remove WEB_HTTP_PORT from .env.example - Update Dockerfile EXPOSE to only port 8080 - Update CHANGELOG.md to document removal Technical details: - Web UI static files remain in docs/ folder (legacy from batch mode) - These were designed for JSONL file format, not the new SQLite database - No web server was ever started in entrypoint.sh for API mode - Port 8888 was exposed but nothing listened on it Result: - Cleaner configuration (1 fewer port mapping) - Only REST API (8080) is exposed - Eliminates user confusion about non-functional web UI
32 lines
1.4 KiB
Plaintext
32 lines
1.4 KiB
Plaintext
# =============================================================================
|
|
# AI-Trader Environment Configuration
|
|
# =============================================================================
|
|
# Copy this file to .env and fill in your actual values
|
|
# Docker Compose automatically reads .env from project root
|
|
|
|
# AI Model API Configuration
|
|
# OPENAI_API_BASE: Leave empty to use default OpenAI endpoint, or set to custom proxy URL
|
|
OPENAI_API_BASE=
|
|
OPENAI_API_KEY=your_openai_key_here # https://platform.openai.com/api-keys
|
|
|
|
# Data Source Configuration
|
|
ALPHAADVANTAGE_API_KEY=your_alphavantage_key_here # https://www.alphavantage.co/support/#api-key
|
|
JINA_API_KEY=your_jina_key_here # https://jina.ai/
|
|
|
|
# API Server Port (exposed on host machine for REST API)
|
|
# Container ALWAYS uses port 8080 internally (hardcoded in entrypoint.sh)
|
|
# This variable ONLY controls the host port mapping (host:API_PORT -> container:8080)
|
|
# Change this if port 8080 is already in use on your host machine
|
|
# Example: API_PORT=8889 if port 8080 is occupied by another service
|
|
# Used for Windmill integration and external API access
|
|
API_PORT=8080
|
|
|
|
# Agent Configuration
|
|
AGENT_MAX_STEP=30
|
|
|
|
# Data Volume Configuration
|
|
# Base directory for all persistent data (will contain data/, logs/, configs/ subdirectories)
|
|
# Use relative paths (./volumes) or absolute paths (/home/user/ai-trader-volumes)
|
|
# Defaults to current directory (.) if not set
|
|
VOLUME_PATH=.
|