From 9b66d299484688c25e8789bd246b66b2edc762e9 Mon Sep 17 00:00:00 2001 From: Maas Lalani Date: Sat, 10 Jun 2023 02:55:44 -0400 Subject: [PATCH] docs: add readme --- README.md | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..47fb7ec067f9b9d0b3abc783a1f445b0b334918a --- /dev/null +++ b/README.md @@ -0,0 +1,67 @@ +# Invoice + +zzz + +Generate invoices from the command line. + +```bash +invoice generate --title "Invoice" \ + --id 2 \ + --logo ./images/logo.png \ + --from "LaLaLabs, Inc." \ + --to "Imagine, Inc." \ + --date "June 10, 2023" \ + --due "June 30, 2023" \ + --tax 0.13 \ + --discount 0.15 \ + --currency USD \ + --item "Rubber Duck" \ + --quantity 2 \ + --rate 25 \ + --notes "For debugging purposes." +``` + +## Installation + + + +Install with Go: + +```sh +go install github.com/maaslalani/invoice@main +``` + +Or download a binary from the [releases](https://github.com/maaslalani/invoice/releases). + + +## License + +[MIT](https://github.com/maaslalani/invoice/blob/master/LICENSE) + +## Feedback + +I'd love to hear your feedback on improving `invoice`. + +Feel free to reach out via: +* [Email](mailto:maas@lalani.dev) +* [Twitter](https://twitter.com/maaslalani) +* [GitHub issues](https://github.com/maaslalani/invoice/issues/new) + +--- + +zzz