10 releases

0.0.10 May 24, 2021
0.0.9 May 24, 2021
0.0.4 Mar 30, 2021

#2343 in Web programming

Apache-2.0

29KB
482 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 Checker API.
  • For more information, the Checker API is still is doumented here:
  • https://docs.checkr.com
  • Example:
  • use checkr::Checkr;
  • use serde::{Deserialize, Serialize};
  • async fn get_candidates() {
  • // Initialize the Checker client.
    
  • let checkr = Checkr::new_from_env();
    
  • // List the candidates.
    
  • let candidates = checkr.list_candidates().await.unwrap();
    
  • println!("{:?}", candidates);
    
  • }
  • 
    

Dependencies

~5–19MB
~275K SLoC