Soccer is a Rust-based terminal application that retrieves the scores, standings, and lineups for the current match day of the German Bundesliga and UEFA Champions League.
To check if Rust is installed:
rustc --versionIf not, install it using rustup:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shClone the repository:
git clone https://github.com/yourusername/yourproject.git
cd yourprojectThen build and install the app:
cargo install --path .This will compile the app and place the binary in your local Cargo bin directory (usually ~/.cargo/bin).
You can now run the app from anywhere:
yourappnameTo update to the latest version, just pull the repo and reinstall:
git pull origin main
cargo install --path .- soccer » Displays the current scores
- soccer scores » Displays the current scores
- soccer standings » Displays the current standings
- soccer match [team name (fuzzy search)] » Displays the lineup for the selected match
- soccer --help » Displays the available Commands
- soccer --version » Displays the current version