56 lines
550 B
Plaintext
56 lines
550 B
Plaintext
# Python cache
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
env/
|
|
venv/
|
|
|
|
# Node modules (critical for fixing esbuild platform issue)
|
|
node_modules
|
|
frontend/node_modules
|
|
*/node_modules
|
|
|
|
# Build outputs
|
|
frontend/dist
|
|
frontend/.angular
|
|
|
|
# Environment variables
|
|
*.env
|
|
.env
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Documentation
|
|
*.md
|
|
|
|
# IDE files
|
|
.vscode
|
|
.idea
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# OS files
|
|
.DS_Store
|
|
|
|
# Configuration
|
|
helm/
|
|
.gitlab-ci.yml
|
|
docker-compose.yml
|
|
|
|
# Development files
|
|
frontend/.vscode
|
|
frontend/src/**/*.spec.ts
|
|
|
|
# Runtime data
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage
|
|
coverage
|