A terminal app implemented with C++ for hungry students at Ulm University
This app uses the unofficial API from Kai Anter. If you don't value unoccupied RAM and insist of using a Web-App for literally everything, you can also use Kai's webpage.
-f
/--filter
: You can specify meal attributes to filter for. If you're, for example, vegan, you can specify-f Vegan
to only get vegan food. Possible options are: Vegan, Vegetarisch, Bio, Schwein, Rind.
To build and install you need a working version of CMake >= 3.20 and a compiler that can build at least C++ 20 code.
If you meet those those requirements, you can follow these steps:
- Clone the project:
git clone https://github.com/LukasPietzschmann/uulm-mensa-tui.git
- Navigate inside the project:
cd uulm-mensa-tui
- Create a build folder and cd into it:
mkdir build ; cd build
- Setup the build environment:
cmake ..
- Build it:
sudo cmake --build . --target install