70 lines
653 B
Plaintext
70 lines
653 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.hypothesis/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.env
|
|
|
|
# UV/uv
|
|
.uv/
|
|
uv.lock
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
.github/
|
|
|
|
# Documentation
|
|
README.md
|
|
docs/
|
|
*.md
|
|
|
|
# Test files
|
|
test_*.py
|
|
tests/
|
|
test_*.html
|
|
|
|
# Cache files (will be created in container)
|
|
calendar_cache.json
|
|
.cache/
|
|
|
|
# CI/CD
|
|
.gitlab-ci.yml
|
|
.travis.yml
|
|
Jenkinsfile
|
|
|
|
# Docker files (not needed in build context)
|
|
docker-compose*.yml
|
|
Dockerfile.*
|
|
|
|
# Development files
|
|
Makefile
|
|
run.sh
|
|
setup.py
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.log
|
|
*.pid |