mirror of
https://github.com/Nighthawk42/VDM.git
synced 2026-08-30 04:30:21 +00:00
53 lines
1009 B
Plaintext
53 lines
1009 B
Plaintext
# ===================================================================
|
|
# 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_out/
|
|
|
|
# Ignore locally generated SSL certificates.
|
|
/ssl/
|
|
|
|
# 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?
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Windows
|
|
Thumbs.db |