Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 21 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,14 @@ wheels/
*.egg

# Virtual environments
.venv/
venv/
ENV/
env/
ENV/
.venv

# Environment variables and secrets
.env
.env.local
*.env
api_key.txt

Expand All @@ -40,23 +41,31 @@ cache/
.ipynb_checkpoints/
*.ipynb_checkpoints

# Logs
*.log
logs/

# IDE
# IDEs
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db
# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/

# Data directories
# Logs
logs/
*.log

# Data and cache
data/
*.db
*.sqlite

*.egg-info/
# OS
.DS_Store
Thumbs.db

# Streamlit
.streamlit/secrets.toml
Loading