A MagicMirror module that displays the Culver's flavor of the day from a specific store. It pulls data from the Culver's website and shows today's flavor, tomorrow's flavor, and an optional description and image.
- Display the current flavor of the day from Culver's
- Optionally display a description and image of the flavor
- Optionally show tomorrow's flavor
-
Navigate to your MagicMirror modules directory:
cd ~/MagicMirror/modules
-
Clone this repository:
git clone https://github.com/dcwestra/MMM-CulversFOTD.git
-
Navigate into the newly cloned directory:
cd MMM-CulversFOTD
-
Install the required dependencies:
npm install
-
Add the modules to your config.js:
{ module: "MMM-CulversFOTD", position: "top_center", // Position of the module on the MagicMirror config: { storeSlug: "sauk-city", // Your store slug (can be found in the store's URL) showDescription: true, // Optional: Show the description (true/false) showImage: true, // Optional: Show the image (true/false) showTomorrow: true, // Optional: Show tomorrow's flavor (true/false) } }
-
Finding the
storeSlug
: Navigate to the desired store page and copy the location name from the URL Example: ThestoreSlug
forhttps://www.culvers.com/restaurants/sauk-city
would besauk-city
Option | Possible values | Default | Description |
---|---|---|---|
storeSlug |
string |
"sauk-city" |
The store's unique identifier (found in URL) |
showDescription |
true,false |
true |
Optional: Whether or not to display the flavor's description |
showImage |
true,false |
true |
Optional: Whether or not to display an image of the flavor |
showTomorrow |
true,false |
true |
Optional: Whether or not to display tomorrow's flavor |
updateInterval |
number |
3600000 |
Optional: Set interval to recheck the flavor of the day |
This project is licensed under the MIT License - see the LICENSE file for details.
- Fork the repository.
- Create a new branch (
git checkout -b feature-name
). - Commit your changes (
git commit -am 'Add feature'
). - Push to the branch (
git push origin feature-name
). - Open a pull request.
- MagicMirror² for creating the framework.
- The Culver's website for providing the data.