_handle_close was not clearing _current_positions when no matching OPEN trade was found in DB, causing all subsequent entries for the same symbol+direction to be silently skipped. Also add PYTHONUNBUFFERED=1 and python -u to make log parser crashes visible in docker logs. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
469 B
Bash
19 lines
469 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
echo "=== Trading Dashboard ==="
|
|
echo "LOG_DIR=${LOG_DIR:-/app/logs}"
|
|
echo "DB_PATH=${DB_PATH:-/app/data/dashboard.db}"
|
|
|
|
# 로그 파서를 백그라운드로 실행
|
|
python -u log_parser.py &
|
|
PARSER_PID=$!
|
|
echo "Log parser started (PID: $PARSER_PID)"
|
|
|
|
# 파서가 기존 로그를 처리할 시간 부여
|
|
sleep 3
|
|
|
|
# FastAPI 서버 실행
|
|
echo "Starting API server on :8080"
|
|
exec uvicorn dashboard_api:app --host 0.0.0.0 --port 8080 --log-level info
|