Evolved MealTally repo to tally and track handouts of any sort to people in need. EX: Meal tally handing out meals. During pandemic handing out medical supplies
There are multiple ways to test backend + db interaction. This is my preferred way.
docker compose up "db" "neonDbProxy" --build --force-recreate -d
to run the database and neon proxy in the backgroundbun dev
to start the dev server Alternatively there is justdocker compose up "db" "neonDbProxy" "api" --build --force-recreate -d
to run the database, neon proxy, and api in the background
- `docker compose up --build --force-recreate
docker compose down -v --remove-orphans
to stop and remove all containers, networks, and volumes created bydocker compose up
. This is necessary because docker images just stop working when they live too long.