/ .dockerignore
.dockerignore
1 .git/ 2 .gitignore 3 .env 4 .env.local 5 6 # Python 7 __pycache__/ 8 *.py[cod] 9 *$py.class 10 *.so 11 .Python 12 *.egg-info/ 13 dist/ 14 build/ 15 16 # Virtual environment 17 .venv/ 18 venv/ 19 ENV/ 20 21 # IDE 22 .vscode/ 23 .idea/ 24 *.swp 25 *.swo 26 27 # Database 28 chroma_db/ 29 *.db 30 *.sqlite3 31 32 # Documentation 33 *.md 34 !README.md 35 36 # Test files 37 test_*.py 38 *_test.py 39 40 # Other 41 .DS_Store 42 *.log 43 chunks.json 44