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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .funcignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.venv
90 changes: 90 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

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

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

# Azure Functions
local.settings.json
.python_packages/
__blobstorage__/
__queuestorage__/
__azurite_db*__.json
.vscode/

# Environment Variables
.env
.env.local
.env.*.local
deployment-vars.sh

# Logs
*.log
logs/
*.log.*

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/

# Archives
*.zip
*.tar.gz
*.tar
*.rar
*.7z

# OS Files
Thumbs.db
.DS_Store

# Temporary Files
*.tmp
*.temp
*.bak

# Jupyter Notebooks
.ipynb_checkpoints

# Screenshots (keep folder structure but ignore actual images during development)
# Remove the line below if you want to commit screenshots
# screenshots/*.png
# screenshots/*.jpg
# screenshots/*.jpeg
Loading