54 lines
576 B
Plaintext
54 lines
576 B
Plaintext
# Documentation
|
|
*.md
|
|
documentation/
|
|
|
|
# Build and dependency files
|
|
Makefile
|
|
*.pyc
|
|
__pycache__/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Development and testing
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.pytest_cache/
|
|
.coverage
|
|
|
|
# Git and version control
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Docker files (no copy Docker files into the image)
|
|
Dockerfile
|
|
docker-compose.yaml
|
|
|
|
# CI/CD
|
|
.github/
|
|
.gitlab-ci.yml
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.log
|
|
scratches/
|
|
|
|
# Node modules (if any)
|
|
node_modules/
|
|
npm-debug.log
|