fix: consolidate virtual environment path and remove duplicate CLI requirements file
All checks were successful
Documentation Validation / validate-docs (push) Successful in 11s
CLI Tests / test-cli (push) Successful in 1m0s
Security Scanning / security-scan (push) Successful in 1m3s

🔧 Virtual Environment Consolidation:
• Update aitbc-cli launcher to use /opt/aitbc/venv instead of /opt/aitbc/cli/venv
• Remove cli/requirements.txt in favor of centralized dependency management
• Maintain compatibility with existing CLI functionality and installation path
This commit is contained in:
2026-03-30 08:43:25 +02:00
parent ece6f73195
commit b0ff378145
10 changed files with 1486 additions and 89 deletions

View File

@@ -1,3 +1,3 @@
#!/bin/bash
source /opt/aitbc/cli/venv/bin/activate
source /opt/aitbc/venv/bin/activate
python /opt/aitbc/cli/aitbc_cli.py "$@"