Go to file
Serafim Sukharev e6f583f6d4 feat: authorization 2025-01-28 19:11:37 +03:00
backend init 2025-01-24 15:19:25 +03:00
frontend feat: authorization 2025-01-28 19:11:37 +03:00
keycloak feat: authorization 2025-01-28 19:11:37 +03:00
nginx feat: authorization 2025-01-28 19:11:37 +03:00
.env feat: authorization 2025-01-28 19:11:37 +03:00
.gitignore feat: authorization 2025-01-28 19:11:37 +03:00
README.md feat: authorization 2025-01-28 19:11:37 +03:00
compose.yml feat: authorization 2025-01-28 19:11:37 +03:00

README.md

App for counting calories

Stack:

  • Keycloak
  • React (TypeScript)
  • FastAPI
  • Elasticsearch
  • Supserset

Features:

  • Authorization
  • Saving records with absorbed calories (description (optional), at least one of: cals per gram, grams, cals)
  • Editing records (including date)
  • Display records in cronological order with pagination
  • Search by records description
  • Watch stats in superset (calories chart)
  • Docker compose

API docs:

Record { id: int description: string weight: number calories: number calspergram: number date: datetime }

GET /records?offset=0&amount=5 [ { date: string records: Record[] }[5] ]

POST /records { description: string weight: number calories: number calspergram: number } -> Record

UPDATE /records { description?: string weight?: number calories?: number calspergram?: number date?: datetime } -> Record