NotebookLMClone / .gitignore
github-actions[bot]
Sync from GitHub e48aa5f27523b35a22c1a01acbb2b835cdc28984
aacd162
raw
history blame contribute delete
703 Bytes
# Environment and secrets
.env
.env.*
.env.local
.env.*.local
# Python cache/build artifacts
__pycache__/
*.py[cod]
*.pyo
*.pyd
*$py.class
*.so
.Python
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
.tox/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# Virtual environments
env/
myenv/
.venv/
venv/
ENV/
# Local databases and vector stores
*.db
*.sqlite
*.sqlite3
chroma_data/
data/chroma_db/
data/users/
# Uploaded user files
uploads/
# Streamlit local state
.streamlit/
# Cache
.cache/
*.cache
# Node/npm (if using)
node_modules/
npm-debug.log
# OS/editor files
.DS_Store
.idea/
.vscode/
*.swp
*.swo
*~