14 releases

0.1.13 Jun 22, 2021
0.1.12 Jun 21, 2021

#9 in #cio

Download history 32/week @ 2023-12-31 23/week @ 2024-01-07 33/week @ 2024-01-14 51/week @ 2024-01-21 27/week @ 2024-02-18 19/week @ 2024-02-25 10/week @ 2024-03-03 1/week @ 2024-03-10 5/week @ 2024-03-17 30/week @ 2024-03-31 53/week @ 2024-04-07 23/week @ 2024-04-14

107 downloads per month

Apache-2.0

36KB
755 lines

cio

cargo-build cargo-clippy cargo-test rustfmt cloud-run

Helper functions and types for doing the activities of a CIO.

Configuration

Runtime Flags

Specific runtime behaviors can be controlled via environment variables. Flags are disabled by default and setting the variable to true will enable the feature.

Flag Description
RFD_PDFS_IN_GITHUB Enables committing of rendered RFD PDFs back to their source repo
RFD_PDFS_IN_GOOGLE_DRIVE Enables writing of rendered RFD PDFs to Google Drive

The architecture for this application server and all it's surroundings is:

arch.png


lib.rs:

  • A rust library for interacting with the QuickBooks API.
  • For more information, you can check out their documentation at:
  • https://developer.intuit.com/app/developer/qbo/docs/develop
  • Example:
  • use quickbooks::QuickBooks;
  • use serde::{Deserialize, Serialize};
  • async fn list_purchases() {
  • // Initialize the QuickBooks client.
    
  • let quickbooks = QuickBooks::new_from_env("", "", "");
    
  • let purchases = quickbooks.list_purchases().await.unwrap();
    
  • println!("{:?}", purchases);
    
  • }
  • 
    

Dependencies

~5–19MB
~278K SLoC