Files
infoscreen-dev/.gitignore

65 lines
809 B
Plaintext

# .gitignore for infoscreen-dev workspace
# Ignore common python and workspace artifacts while keeping source files tracked
# Byte-compiled / cache
__pycache__/
*.py[cod]
*$py.class
# Virtual environments
venv/
.venv/
env/
ENV/
# dotenv local overrides (leave .env if intentionally committed)
.env.local
.env.*.local
.env
# Logs and runtime files
logs/
*.log
simclient.log
simclient.log.*
# Screenshots and large runtime artifacts
screenshots/
presentation/*.cache
# Backup of nested src git metadata
src/.git.backup/
# Editor/IDE
.vscode/
.idea/
*.sublime-workspace
*.sublime-project
*.swp
# OS files
.DS_Store
Thumbs.db
# Test / coverage
.pytest_cache/
.coverage
htmlcov/
# Build / packaging
build/
dist/
*.egg-info/
# Archives
*.tar.gz
*.zip
# Database files
*.sqlite3
*.db
# Misc
*.bak
*.old