Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elcosas/nutri-ant
Nutri-Ant is a minimal, fullstack webapp that helps users identify the most healthy options to eat at either Brandywine or the Anteatery for reaching daily macro-nutrient goals
https://github.com/elcosas/nutri-ant
flask flask-application hackathon hackathon-project uci webjam
Last synced: about 2 months ago
JSON representation
Nutri-Ant is a minimal, fullstack webapp that helps users identify the most healthy options to eat at either Brandywine or the Anteatery for reaching daily macro-nutrient goals
- Host: GitHub
- URL: https://github.com/elcosas/nutri-ant
- Owner: elcosas
- Created: 2024-11-19T03:39:27.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-11-22T23:49:05.000Z (2 months ago)
- Last Synced: 2024-11-23T00:20:19.039Z (2 months ago)
- Topics: flask, flask-application, hackathon, hackathon-project, uci, webjam
- Language: HTML
- Homepage: https://nutri-ant.vercel.app/
- Size: 331 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nutri-Ant
A minimal, fullstack webapp that helps users identify the most healthy options to eat at either Brandywine or the Anteatery
![GitHub Repo stars](https://img.shields.io/github/stars/elcosas/Nutri-Ant)
![GitHub forks](https://img.shields.io/github/forks/elcosas/Nutri-Ant)
![GitHub last commit (branch)](https://img.shields.io/github/last-commit/elcosas/Nutri-Ant)
![Vercel](https://vercelbadge.vercel.app/api/elcosas/Nutri-Ant)**Link**: [nutri-ant.vercel.app](https://nutri-ant.vercel.app/)
## Description
The app makes use of the Zotmeal API to query menu data on a Flask-built backend based on user input.
The app then calculates the bmr and dri levels given the users age, sex, height, and weight, finally returning
a sorted list of menu items that most efficiently helps with reaching one's daily macro-nutrient goals.## Usage
The project can be installed using git via:
```bash
git clone https://github.com/elcosas/Nutri-Ant.git
```
Then running either `setup.sh` (Unix) or `setup.bat` (Windows):
```bash
./setup.sh
```
```powershell
setup.bat
```
Then finally running the main app:
```bash
python api/index.py
```## Sources
backend data: [EricPedley/zotmeal-backend](https://github.com/EricPedley/zotmeal-backend)
\
\
DRI information:
- [https://www.nal.usda.gov/human-nutrition-and-food-safety/dri-calculator](https://www.nal.usda.gov/human-nutrition-and-food-safety/dri-calculator)
- [https://www.omnicalculator.com/health/dri](https://www.omnicalculator.com/health/dri)
- [https://ods.od.nih.gov/HealthInformation/nutrientrecommendations.aspx](https://ods.od.nih.gov/HealthInformation/nutrientrecommendations.aspx)