Backend fixes: - Updated psutil from 5.9.8 to 6.1.0 for better ARM64 support and pre-built wheels Frontend fixes: - Created missing lib/api/client.ts with axios API client - Created missing lib/hooks/useStats.ts with system statistics hooks - Created missing lib/hooks/useBots.ts with bot management hooks - Fixed .gitignore to not ignore frontend/lib/ directory These changes resolve the build errors: - Backend: psutil compilation failure on aarch64 - Frontend: Missing module @/lib/hooks/useStats
79 lines
639 B
Plaintext
79 lines
639 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
backend/lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Logs
|
|
*.log
|
|
bots/logs/*.log
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Node
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Next.js
|
|
.next/
|
|
out/
|
|
next-env.d.ts
|
|
|
|
# Build
|
|
dist/
|
|
build/
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# Bot session files
|
|
*.session
|
|
*.session-journal
|
|
|
|
# Misc
|
|
.cache/
|
|
.temp/
|
|
tmp/
|