Fix engine daemon exit and UI DuckDB access
All checks were successful
CI/CD Pipeline / test (push) Successful in 1m43s
CI/CD Pipeline / build-engine (push) Has been skipped
CI/CD Pipeline / build-ui (push) Has been skipped

- Add if __name__ == '__main__' guard to main.py (engine exited immediately)
- Update Dockerfile TA-Lib build for ARM64 (config.guess/config.sub)
- Add redis dependency to pyproject.toml
- Add docker-compose.override.yml for local dev with source mounting
- Remove :ro from UI engine volume mount (DuckDB needs write for WAL)
This commit is contained in:
bnair123
2025-12-27 23:27:33 +04:00
parent 2f065df1e9
commit 007633660c
4 changed files with 45 additions and 7 deletions

View File

@@ -58,6 +58,9 @@ dependencies = [
"structlog>=24.1.0",
"rich>=13.7.0",
# Redis
"redis>=5.0.0",
# HTTP client
"httpx>=0.26.0",
]