├── README.md ├── botDefnFile.json ├── src ├── build.sh ├── calculate.js ├── chicken.js ├── chinese.js ├── data │ ├── adjustments.json │ ├── chicken.json │ ├── dressings.json │ ├── drinks.json │ ├── foods.json │ ├── healthy.json │ ├── pizzas.json │ ├── restaurants.json │ ├── sauces.json │ └── specials.json ├── lambda.js ├── misc.js ├── models │ ├── botData.json │ └── botInfo.sh ├── package.json ├── pizza.js ├── slots │ ├── README.md │ ├── createdrinkslot.sh │ ├── createextraslot.sh │ ├── deploydrinkslot.sh │ ├── deployextraslot.sh │ ├── deployslotgen.sh │ ├── gendrinkslot.js │ ├── genextraslots.js │ ├── genslots.js │ └── slots.sh └── testing │ ├── calcRequest.json │ ├── chineseRequest.json │ ├── miscRequest.json │ ├── pizzaRequest.json │ ├── request.json │ ├── response.json │ ├── saladRequest.json │ └── subDayRequest.json └── website ├── help.html ├── index.html └── privacy.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/README.md -------------------------------------------------------------------------------- /botDefnFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/botDefnFile.json -------------------------------------------------------------------------------- /src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/build.sh -------------------------------------------------------------------------------- /src/calculate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/calculate.js -------------------------------------------------------------------------------- /src/chicken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/chicken.js -------------------------------------------------------------------------------- /src/chinese.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/chinese.js -------------------------------------------------------------------------------- /src/data/adjustments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/data/adjustments.json -------------------------------------------------------------------------------- /src/data/chicken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/data/chicken.json -------------------------------------------------------------------------------- /src/data/dressings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/data/dressings.json -------------------------------------------------------------------------------- /src/data/drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/data/drinks.json -------------------------------------------------------------------------------- /src/data/foods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/data/foods.json -------------------------------------------------------------------------------- /src/data/healthy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/data/healthy.json -------------------------------------------------------------------------------- /src/data/pizzas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/data/pizzas.json -------------------------------------------------------------------------------- /src/data/restaurants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/data/restaurants.json -------------------------------------------------------------------------------- /src/data/sauces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/data/sauces.json -------------------------------------------------------------------------------- /src/data/specials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/data/specials.json -------------------------------------------------------------------------------- /src/lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/lambda.js -------------------------------------------------------------------------------- /src/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/misc.js -------------------------------------------------------------------------------- /src/models/botData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/models/botData.json -------------------------------------------------------------------------------- /src/models/botInfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/models/botInfo.sh -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/package.json -------------------------------------------------------------------------------- /src/pizza.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/pizza.js -------------------------------------------------------------------------------- /src/slots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/slots/README.md -------------------------------------------------------------------------------- /src/slots/createdrinkslot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/slots/createdrinkslot.sh -------------------------------------------------------------------------------- /src/slots/createextraslot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/slots/createextraslot.sh -------------------------------------------------------------------------------- /src/slots/deploydrinkslot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/slots/deploydrinkslot.sh -------------------------------------------------------------------------------- /src/slots/deployextraslot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/slots/deployextraslot.sh -------------------------------------------------------------------------------- /src/slots/deployslotgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/slots/deployslotgen.sh -------------------------------------------------------------------------------- /src/slots/gendrinkslot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/slots/gendrinkslot.js -------------------------------------------------------------------------------- /src/slots/genextraslots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/slots/genextraslots.js -------------------------------------------------------------------------------- /src/slots/genslots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/slots/genslots.js -------------------------------------------------------------------------------- /src/slots/slots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/slots/slots.sh -------------------------------------------------------------------------------- /src/testing/calcRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/testing/calcRequest.json -------------------------------------------------------------------------------- /src/testing/chineseRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/testing/chineseRequest.json -------------------------------------------------------------------------------- /src/testing/miscRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/testing/miscRequest.json -------------------------------------------------------------------------------- /src/testing/pizzaRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/testing/pizzaRequest.json -------------------------------------------------------------------------------- /src/testing/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/testing/request.json -------------------------------------------------------------------------------- /src/testing/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/testing/response.json -------------------------------------------------------------------------------- /src/testing/saladRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/testing/saladRequest.json -------------------------------------------------------------------------------- /src/testing/subDayRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/src/testing/subDayRequest.json -------------------------------------------------------------------------------- /website/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/website/help.html -------------------------------------------------------------------------------- /website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/website/index.html -------------------------------------------------------------------------------- /website/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrenjpeterson/caloriecounter/HEAD/website/privacy.html --------------------------------------------------------------------------------