Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 933 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 933 Bytes

Quickpay

Rust test and lint

A CLI-tool for creating and authorising payments with TrueLayer.

Currently, there aren't many viable use cases for this besides testing the different payment flows.

Example usage

pay --name "Ben Eficiary" --iban "NL84INGB2266765221" eur 1

Configuration

To use this tool, you will have to set

You can either set the environment variables

export QUICKPAY__CLIENT_ID=""
export QUICKPAY__CLIENT_SECRET=""
export QUICKPAY__CLIENT_KID=""
export QUICKPAY__CLIENT_PRIVATE_KEY=""
export QUICKPAY__REDIRECT_URI=""

or create a file $HOME/.config/quickpay.toml containing the configuration:

client_id=""
client_secret=""
client_kid=""
client_private_key=""
redirect_uri=""