cd database
docker-compose up -d- Fix Prisma that does not work actually
- Complete API End Points Documentation
- Add more tests to handle edge cases
- Reference ranges: create a
Referencestable with columns:LOINC code,min age,max age,gender,min value,max value,unit.Observationstable rows should this way contain areferenceIdforeign key. - List measurements: handle filtering and sorting
- Unit conversion: create a converter that handle multiplier (ie: mg = g1000, cg = g100, ..., kg = g0.001) and divider (ie: mg/dL = g1000 / L*10)
- Add measurement observations form
- Add area chart representing observations
- Was thinking about a LOINC codes reference that should provide names & default unit for each observations. For example:
{ "code": "718-7", "names": ["Hemoglobin", "Hémoglobine"], "defaultUnit": "g/dL" }, - Delta calculation: Apply converter to get uniform unit for all observations (ie: convert mg/dL in g/L, convert kg/hL in g/L) to compute deltas.