Skip to content

braintree/braintree.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Braintree Open Source

This is the repository for Braintree's list of open source projects.

Like what you see? Work with us!

How to rebuild

This project uses metalsmith to build a single page. See build.js for the majority of the logic.

  1. Clone this repo.

  2. Install nvm

  3. Use nvm to install node:

    nvm install
    
  4. Use npm to install dependenceis:

    npm install
    
  5. Create a .github_api_auth file containing auth credentials that can be consumed by node-github. For example, if using a personal access token:

    {
        "type": "token",
        "token": "YOUR_PERSONAL_ACCESS_TOKEN"
    }
    
  6. Run the build script:

    npm run build
    
  7. View results:

    open index.html