A MagicMirror module that displays a random juice recipe daily, including the image, title, and ingredients.
- Displays a random juice recipe with an image, title, and ingredients list.
- Clickable title links to the full recipe on JuiceRecipes.com.
- Automatically updates once every 24 hours (or any time interval desired).
- Clone this repository into the
modules
folder of your MagicMirror installation:cd MagicMirror/modules git clone https://github.com/BerkSmash1984/MMM-DailyJuice.git
- Install dependencies:
cd MMM-DailyJuice npm install
- Add the module to the
config.js
file in your MagicMirror directory:{ module: "MMM-DailyJuice", header: "The Daily Juice", position: "top_center", config: { updateInterval: 86400000 // Update interval in milliseconds (24 hours). Can use any interval you want. } }