61 lines
827 B
Plaintext
61 lines
827 B
Plaintext
# Ignore JetBrains project settings
|
|
.idea/
|
|
|
|
# Ignore Flask session data
|
|
flask_session/
|
|
|
|
# Ignore testing data
|
|
.pytest_cache/
|
|
|
|
# Ignore databases
|
|
data/
|
|
data/*.db
|
|
*.db
|
|
|
|
# Ignore configuration files
|
|
config/
|
|
config.py
|
|
src/config.py
|
|
config.yml
|
|
|
|
# Ignore virtual environments
|
|
venv/
|
|
.venv/
|
|
ENV/
|
|
env/
|
|
|
|
# Ignore compiled bytecode
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# Ignore backup and log files
|
|
*.log
|
|
*.bak
|
|
|
|
# Ignore system files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Ignore local AI/tooling settings
|
|
.claude/
|
|
|
|
# Ignore test screenshots and playwright artifacts
|
|
*.png
|
|
*.yml
|
|
!requirements.yml
|
|
.playwright-cli/
|
|
output.text
|
|
|
|
# Ignore backup files
|
|
*.backup.js
|
|
|
|
# Ignore test state files
|
|
src/app_loaded.yaml
|
|
|
|
# Ignore local symlinked docs from centralized docs repo
|
|
docs/
|
|
docs
|
|
|
|
# Ignore local Blockly vendor checkout (large source + node_modules)
|
|
src/static/blockly/
|