Skip to content
Open
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
57 changes: 57 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Python Bytecode
*.pyc
*.pyo
__pycache__/

# Virtual Environment
venv/
env/
.venv/
ENV/
env.bak/
venv.bak/

# IDE or Editor configurations
.vscode/
.idea/
*.swp
*.swo

# Dependency directories
node_modules/
*.egg-info/
dist/
build/
*.log

# .env file for environment variables
.env

# Database files (if you're using SQLite, for example)
*.sqlite3

# FastAPI (and other Python web frameworks) related files
*.db
*.sqlite

# Pytest cache
.cache/

# mypy
.mypy_cache/

# Pydantic generated models or any auto-generated files
*.pydantic/

# Docker-related files
docker-compose.override.yml
Dockerfile

# Coverage reports from testing
.coverage
coverage.xml
*.cover

# Temporary files
*.bak
*.tmp
Loading