mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-12-16 07:30:13 +01:00
Added .gitignore exceptions for: - card_files/similarity_cache.parquet - card_files/similarity_cache_metadata.json These files need to be committed to the similarity-cache-data branch for distribution with Docker builds.
45 lines
No EOL
712 B
Text
45 lines
No EOL
712 B
Text
*.bkp
|
|
*.csv
|
|
*.json
|
|
*.jsonl
|
|
*.log
|
|
*.txt
|
|
!requirements.txt
|
|
!requirements-dev.txt
|
|
|
|
RELEASE_NOTES.md
|
|
test.py
|
|
!test_exclude_cards.txt
|
|
!test_include_exclude_config.json
|
|
|
|
.mypy_cache/
|
|
.pytest_cache/
|
|
.venv/
|
|
__pycache__/
|
|
|
|
.github/*.md
|
|
|
|
config/themes/catalog/
|
|
!config/themes/
|
|
!config/themes/*.yml
|
|
!config/themes/theme_list.json
|
|
!config/card_lists/*.json
|
|
!config/deck.json
|
|
|
|
# Keep main CSV datasets out of Git, but allow the tiny deterministic fixtures used by CI.
|
|
csv_files/*
|
|
!csv_files/testdata/
|
|
!csv_files/testdata/**/*
|
|
card_files/*
|
|
!card_files/similarity_cache.parquet
|
|
!card_files/similarity_cache_metadata.json
|
|
|
|
deck_files/
|
|
dist/
|
|
|
|
logs/
|
|
!logs/
|
|
logs/*
|
|
!logs/perf/
|
|
logs/perf/*
|
|
!logs/perf/theme_preview_warm_baseline.json |