feat: Add standard .gitignore and .dockerignore files for project exclusion rules.

This commit is contained in:
Marco Gallegos
2025-12-18 00:27:20 -06:00
parent 96542bcd61
commit cab2008838
2 changed files with 199 additions and 0 deletions

34
.dockerignore Normal file
View File

@@ -0,0 +1,34 @@
# Git
.git
.gitignore
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
env.bak/
venv.bak/
# Environments and Secrets
.env
*.json
# IDEs
.vscode/
.idea/
# Logs
*.log
# Docker
Dockerfile
.dockerignore
# Documentation
README.md
docs/