AI-DocumentSearch / .gitignore
vthamaraikannan1@gmail.com
Enhance streamlit_app.py with improved document context handling and UI updates; add .gitignore for environment and build files
646b9b3
raw
history blame
445 Bytes
# Ignore Python cache and virtual environments
__pycache__/
*.pyc
*.pyo
*.pyd
*.db
*.sqlite3
# Ignore virtual environment folders
venv/
env/
ENV/
.venv/
.idea/
.vscode/
# Ignore OS generated files
.DS_Store
Thumbs.db
# Ignore logs and temp files
*.log
*.tmp
# Ignore test and coverage files
.coverage
htmlcov/
*.egg-info/
dist/
build/
# Ignore node modules if present
node_modules/
# Ignore Docker files themselves
Dockerfile
.dockerignore