Hey all, sharing what I’ve been working on. NutriTrace is a self-hosted nutrition and wellness tracker that runs entirely on your own server in a single Docker container.

I built it because every commercial nutrition app has the same shape. You hand them years of food data, body measurements, and biometrics, and your data is held hostage when they pivot or paywall. I wanted to track macros and pull in my Fitbit data without participating in that.

Daily food diary with multi-ingredient meals, recipes, body stats, water tracking, day-level notes. Personal food database, barcode scanner, imports from Open Food Facts and USDA, plus optional Mealie integration. Statistics with trend charts, full backup, exports as CSV / JSON / full ZIP.

Optional wellness device sync from Fitbit, Withings, Garmin, and Android Health Connect. Sleep / readiness / stress scores computed from your data.

Optional AI assistant where you bring your own Claude / OpenAI / Gemini key. It queries your real data via tool use so it can answer things like “what was my average protein this month” without making numbers up. There’s a voice food logger too. Both fully optional, off by default.

Tech: Svelte 4 + Express + better-sqlite3, multi-stage Dockerfile, AGPL-3.0. Native Android app is in active development; PWA installs to home screen on any modern browser today.

Repo and docker-compose example: https://github.com/TraceApps/nutritrace

Happy to answer questions.

  • quick_snail@feddit.nl
    link
    fedilink
    English
    arrow-up
    1
    ·
    3 hours ago

    Hey, can you make a much simpler version of this? Just a static site of the USDA data?

    The USDA nutrition site went down at some point during Trump’s term. and I was afraid that information was lost forever.

    I wish we just had a simple way for folks to clone this website. Literally just that. It would be much simpler than what you’ve already done, and extremely useful.

      • TraceApps@lemmy.worldOP
        link
        fedilink
        English
        arrow-up
        2
        ·
        31 minutes ago

        Yes, vibe coded and proud of it. This is a labor of love that I genuinely don’t think I could have completed without Claude Code. The first commit is large because I was working out of a private dev repo and synced everything to the public repo just before the 1.0 RC release. Hope you give it a chance and that it suits your needs. Thanks!

  • clifmo@programming.dev
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    2 hours ago

    Sqlite only? Edit: confirmed. And it’s written in a way that it will likely only support sqlite in the near future

  • irmadlad@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    5 hours ago

    Great project. Looks like a lot of time went into it. I may give it a spin later on this evening. You included screenshots. Thank you for that.

  • Squizzy@lemmy.world
    link
    fedilink
    English
    arrow-up
    3
    ·
    9 hours ago

    How well would this work internationally? More a question on the resources but does open food facts log international barcodes? I knowour stuff is way different to the same product stocked in the US.

    • TraceApps@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      29 minutes ago

      Barcodes work internationally. i can confirm because i have used in both europe (italy) and africa (south africa). Only difference between nutrition facts i see is that the US uses Sodium and i want to say that at least Europe uses Salt. I have a built in conversion where when one is used the other is automatically calculated.

      • Squizzy@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        7 hours ago

        Brilliant, I could have worded that better. I assume a mars bar in europe and a mars bar in the US has different barcodes because they are made differently and I wasnt sure if the OpenFoodFacts was a US library but it appears to log barcodes and info globally.

        Great idea, love it tackling the subscription creep of trackers

  • Daniel Quinn@lemmy.ca
    link
    fedilink
    English
    arrow-up
    11
    ·
    13 hours ago

    As this is a new project, have you considered hosting your code somewhere other than GitHub? Codeberg and GitLab are similarly user-friendly platforms without the many downsides of supporting Microsoft.

  • CosmicGiraffe@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    9 hours ago

    What does the mealie integration enable? I assume it’s providing foods that can be logged, but can you also pull stuff from mealies meal planning section & populate it into the diary?

    • TraceApps@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      3
      ·
      8 hours ago

      Mealie integration allows you to pull in your Meal/Recipe from your self hosted instance of Mealie via api. If you have nutrition facts set there by the recipes total weight, it will pull in that data and then you can set your serving size accordingly so it calculates properly. It also pulls in the recipe pic if set in Mealie.

  • diminou@lemmy.zip
    link
    fedilink
    English
    arrow-up
    3
    ·
    13 hours ago

    Is there a place where we could help with translation ?

    I know a few people that would want an app like that but English is not their primary language and won’t bother checking it out at all without some kind of translation.

    • TraceApps@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      3
      ·
      7 hours ago

      Is there a place where we could help with translation ?

      I know a few people that would want an app like that but English is not their primary language and won’t bother checking it out at all without some kind of translation.

      Great question, and not yet. NutriTrace is English-only right now, and the UI strings are hardcoded throughout the Svelte components. To accept translations I’d first need to wire up an i18n layer (svelte-i18n is the obvious pick) and extract strings to per-locale JSON files. Then translation contributions become straightforward via PRs or something like Weblate/Crowdin. I will add this to my roadmap. Any languages in particular we should prioritize?

      • Lemmert@reddthat.com
        link
        fedilink
        English
        arrow-up
        1
        ·
        6 hours ago

        Personally I’m more than happy to cover the Dutch translation if you have the time to get translations working. Thanks for the project!

  • pmtriste@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    11 hours ago

    This sounds great. How does the device support work? What do you think of GadgetBridge support?

  • TraceApps@lemmy.worldOP
    link
    fedilink
    English
    arrow-up
    11
    ·
    18 hours ago

    Thanks all, really appreciate the kind words. Feedback is welcome on anything: bug reports, missing features, things that feel rough, or just “this works for my setup.” A few features are flagged Experimental right now and I’d like to harden them enough to drop the badge.

    Native Android app is in active development. There’s also a sister project in the works called LiftTrace under the same TraceApps umbrella, same self-hosted Docker setup but for workout tracking (sets, reps, programs, PRs). Not public yet but close.