Skip to content

Commit

Permalink
Improved readme (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecardleitao authored Jan 29, 2024
1 parent fa593c9 commit 7d98b13
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
run: rustup toolchain install stable --component llvm-tools-preview
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- uses: Swatinem/rust-cache@v1
- uses: Swatinem/rust-cache@v2
- name: Generate code coverage
run: cargo llvm-cov --lcov --output-path lcov.info
- name: Upload coverage to Codecov
Expand All @@ -28,6 +28,6 @@ jobs:
- uses: actions/checkout@v3
- name: Install Rust
run: rustup toolchain install stable
- uses: Swatinem/rust-cache@v1
- uses: Swatinem/rust-cache@v2
- name: Generate code coverage
run: cargo run --example export_private_jets
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Danish private flights
This repository contains a CLI application that generates a text based summary of
private jet's flight information targeted to a Danish audience.
# Private jet flights
[![Test](https://github.com/jorgecardleitao/private-jets/actions/workflows/test.yaml/badge.svg)](https://github.com/jorgecardleitao/private-jets/actions/workflows/test.yaml)
[![Coverage](https://codecov.io/gh/jorgecardleitao/private-jets/graph/badge.svg?token=DT7C376OKH)](https://codecov.io/gh/jorgecardleitao/private-jets)

This repository contains a CLI application to analyze flights of private jets.

It is supported by an Azure Blob storage container for caching data, thereby
reducing its impact to [https://adsbexchange.com/](https://adsbexchange.com/).
Expand Down Expand Up @@ -33,8 +35,8 @@ to perform actual calculations. To use one of such examples:
2. run `cargo run --example single_day -- --tail-number "OY-GFS" --date "2023-10-20"`
3. open `OY-GFS_2023-10-20_0.md`

Step 2. has an optional argument, `--azure-sas-token`, specifying an Azure storage container SAS
for account `privatejets`, container `data`.
Step 2. has an optional argument, `--azure-sas-token`, specifying an Azure storage SAS
token.
When used, cache is written to the remote container, as opposed to disk.

Finally, setting `--backend disk` ignores the Azure's remote storage altogether and
Expand Down

0 comments on commit 7d98b13

Please sign in to comment.