Files
quiz_test/.gitignore
Andrey K. Choi 1c47c11eb1
Some checks reported errors
continuous-integration/drone Build encountered an error
devops prepare
2025-09-11 07:40:57 +09:00

84 lines
713 B
Plaintext

# 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
.env.local
.env.prod
.venv/
env/
venv/
ENV/
env.bak/
venv.bak/
# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
.history
# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Logs
*.log
logs/
# Database
*.db
*.sqlite
*.sqlite3
# Docker
.dockerignore
# CI/CD sensitive files
.env.prod
.env.staging
# Backup files
*.backup
*.bak
*.tmp
# Runtime data
data/quiz_bot.db
data/*.db
# Coverage reports
htmlcov/
.coverage
.coverage.*
coverage.xml
*.cover
.hypothesis/
.pytest_cache/