Token via flag:
cargo run --release -- -l rust -c 50 -t $(cat gh_token)
Token via environment:
GH_AUTHTOKEN=$(cat gh_token) cargo run --release -- -l rust -c 50
Long-form flags:
cargo run --release -- --language rust --project_count 50 --token $(cat gh_token)
- tokio: For bonus points and speed-up
- reqwest: For making HTTP requests
- serde: Translating JSON responses into rust structs
- clap: The go-to for parsing CLI arguments, with auto-generated help texts :)