32 lines
419 B
Plaintext
32 lines
419 B
Plaintext
# Ignore git and local environments
|
|
.git
|
|
.venv
|
|
venv
|
|
ENV
|
|
.vscode
|
|
.idea
|
|
|
|
# Ignore Python caches and test artifacts
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.mypy_cache/
|
|
|
|
# Ignore local media and database files
|
|
media/
|
|
media_testanatomy/
|
|
backups/
|
|
db.sqlite3
|
|
*.log
|
|
logs/
|
|
|
|
# Ignore frontend dependencies and test suites in build context
|
|
**/node_modules/
|
|
rts/node_modules/
|
|
rts/tests/
|
|
package-lock.json
|