Files
thechart/.gitignore
William Valentin d7d4b332d4 Add medicine management functionality with UI and data handling
- Implemented MedicineManagementWindow for adding, editing, and removing medicines.
- Created MedicineManager to handle medicine configurations, including loading and saving to JSON.
- Updated UIManager to dynamically generate medicine-related UI components based on the MedicineManager.
- Enhanced test suite with mock objects for MedicineManager to ensure proper functionality in DataManager tests.
- Added validation for medicine input fields in the UI.
- Introduced default medicine configurations for initial setup.
2025-07-30 16:01:02 -07:00

84 lines
832 B
Plaintext

# Data files (except example data)
thechart_data.csv
### !thechart_data.csv
# Environment files
.env
.env.local
.env.*.local
# Build and distribution
build/
dist/
*.egg-info/
# Python bytecode
*.pyc
*.pyo
*.pyd
__pycache__/
# PyInstaller
*.spec
# Logs
*.log
logs/
# Virtual environments
.venv/
.poetry/
venv/
env/
ENV/
# Testing
.pytest_cache/
.coverage
.coverage.*
coverage.xml
htmlcov/
.tox/
.nox/
# Code quality tools
.ruff_cache/
.mypy_cache/
.pylint.d/
# IDEs and editors
#.vscode/
!.vscode/tasks.json
!.vscode/launch.json
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# Databases
*.db
*.sqlite3
*.sqlite
# uv lock files (keep for reproducibility)
# uv.lock
# Docker
.dockerignore.bak
# Temporary files
*.tmp
*.temp
.cache/
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db