Files
FitTrack_ReportGenerator/examples/GarminSync/.dockerignore
sstent 9e0bd322d3 feat: Initial implementation of FitTrack Report Generator
This commit introduces the initial version of the FitTrack Report Generator, a FastAPI application for analyzing workout files.

Key features include:
- Parsing of FIT, TCX, and GPX workout files.
- Analysis of power, heart rate, speed, and elevation data.
- Generation of summary reports and charts.
- REST API for single and batch workout analysis.

The project structure has been set up with a `src` directory for core logic, an `api` directory for the FastAPI application, and a `tests` directory for unit, integration, and contract tests.

The development workflow is configured to use Docker and modern Python tooling.
2025-10-11 09:54:13 -07:00

49 lines
720 B
Plaintext

# Ignore version control and IDE files
.git
.gitignore
.vscode
# Ignore local configuration files
.env
.env.*
*.env
# Ignore build artifacts and cache
__pycache__
*.pyc
*.pyo
*.pyd
.pytest_cache
.mypy_cache
# Ignore test files
tests/
tests_*.py
# Ignore documentation files
docs/
*.md
*.rst
# Allow specific patch file we need for Docker
!patches/garth_data_weight.py
justfile
requirements.txt # Replaced by pyproject.toml
# Ignore temporary files
*.swp
*.bak
*.tmp
# Ignore data directories
data/*
!data/README.md # Keep README if present
# Ignore migration files (handled separately)
!migrations/alembic.ini
!migrations/versions/*.py
# Ignore local development files
docker-compose.yml
docker-compose.*.yml