# =================================================================== # VDM - Git Ignore File # =================================================================== # --- Python Virtual Environments --- # Ignore the entire virtual environment folder. .venv/ venv/ ENV/ # --- Python Cache & Artifacts --- # Ignore Python's bytecode cache folders and files. __pycache__/ *.pyc *.pyo *.pyd # --- Project-Specific Generated Files & Secrets --- # Ignore environment files containing secrets. *.env # Ignore the entire directory for SQLite databases. /database/ # Ignore the ChromaDB vector store directory. /memory/chroma_db/ # Ignore the directory for generated audio files. /audio/ # Ignore locally generated SSL certificates. /ssl/ # Ignore build artifacts from setuptools. /src/vdm_server.egg-info /build # Ignore local diagnostic files. local_digest.txt # --- Common OS & Editor Files --- # Ignore common user-specific files from editors and operating systems. .vscode/ .idea/ .project .settings *.suo *.ntvs* *.njsproj *.sln *.sw? *.db *.bat *.ps1 *.lock # macOS .DS_Store # Windows Thumbs.db uv