github.com/pusher/oauth2_proxy@v3.2.0+incompatible/CONTRIBUTING.md (about)

     1  # Contributing
     2  
     3  To develop on this project, please fork the repo and clone into your `$GOPATH`.
     4  
     5  Dependencies are **not** checked in so please download those separately.
     6  Download the dependencies using [`dep`](https://github.com/golang/dep).
     7  
     8  ```bash
     9  cd $GOPATH/src/github.com # Create this directory if it doesn't exist
    10  git clone git@github.com:<YOUR_FORK>/oauth2_proxy pusher/oauth2_proxy
    11  cd pusher/oauth2_proxy
    12  ./configure # Setup your environment variables
    13  make dep
    14  ```
    15  
    16  ## Pull Requests and Issues
    17  
    18  We track bugs and issues using Github.
    19  
    20  If you find a bug, please open an Issue.
    21  
    22  If you want to fix a bug, please fork, create a feature branch, fix the bug and
    23  open a PR back to this repo.
    24  Please mention the open bug issue number within your PR if applicable.