commit - 40cb58189a29d8b347ced25f731c5de194405bf8
commit + 6f49a05286efb9aee25ceb3840a0f6a306c966a4
blob - e8e915a1027fed98278a434fd194720909dc6ba5
blob + 7ef4368ff9c21b787ea032ac231b49b3725f4dd1
--- README.md
+++ README.md
* Filter matches by team
* Support for multiple leagues (Premier League, Championship, La Liga, Champions League)
-## Building
+## Installation
-To build the project, run:
+To install scores, run:
```sh
-cargo build --release
+cargo install --path .
```
## Usage
```sh
-./target/release/scores [OPTIONS]
+scores [OPTIONS]
```
### Options
### Leagues
-* `epl`: Premier League (default)
+* `epl`: Premier League
* `efl`: Championship
* `laliga`: La Liga
* `ucl`: Champions League
### Example
```sh
-# List all matches across every competition (default)
-./target/release/scores -t <TOKEN>
+# List all matches across every competition
+scores -t <TOKEN>
# Show upcoming Premier League matches
-./target/release/scores -l epl -t <TOKEN>
+scores -l epl -t <TOKEN>
# Show Premier League table
-./target/release/scores -s -t <TOKEN>
+scores -s -t <TOKEN>
# List all matches involving Arsenal across every competition
-./target/release/scores -f arsenal -t <TOKEN>
+scores -f arsenal -t <TOKEN>
# Show upcoming Arsenal matches in the Premier League
-./target/release/scores -l epl -f arsenal -t <TOKEN>
+scores -l epl -f arsenal -t <TOKEN>
# Show La Liga standings
-./target/release/scores -s -l laliga -t <TOKEN>
+scores -s -l laliga -t <TOKEN>
# Show upcoming Champions League matches
-./target/release/scores -l ucl -t <TOKEN>
+scores -l ucl -t <TOKEN>
```