37 lines
443 B
Plaintext
37 lines
443 B
Plaintext
# Ignore Python caches and virtualenvs
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
venv/
|
|
env/
|
|
|
|
# Node modules and build artifacts
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
|
|
# Data and user uploads (handled separately)
|
|
cloud/*.csv
|
|
cloud/*.utrace
|
|
cloud/users/**
|
|
|
|
# Logs and local IDE files
|
|
logs/
|
|
.vscode/
|
|
.devcontainer/
|
|
.idea/
|
|
|
|
# OS files
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# Ignore archived configs
|
|
archive/
|
|
|
|
# Ignore local environment files
|
|
.env
|
|
|
|
# Ignore Windows solution files
|
|
*.sln
|