2018-12-20 16:14:04 +02:00
|
|
|
# Contributing
|
|
|
|
|
|
|
|
To develop on this project, please fork the repo and clone into your `$GOPATH`.
|
|
|
|
|
|
|
|
Dependencies are **not** checked in so please download those separately.
|
2019-10-09 18:57:59 +02:00
|
|
|
Download the dependencies using `go mod download`.
|
2018-12-20 16:14:04 +02:00
|
|
|
|
|
|
|
```bash
|
|
|
|
cd $GOPATH/src/github.com # Create this directory if it doesn't exist
|
2020-03-29 15:54:36 +02:00
|
|
|
git clone git@github.com:<YOUR_FORK>/oauth2-proxy oauth2-proxy/oauth2-proxy
|
|
|
|
cd oauth2-proxy/oauth2-proxy
|
2019-10-09 18:57:59 +02:00
|
|
|
go mod download
|
2018-12-20 16:14:04 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Pull Requests and Issues
|
|
|
|
|
|
|
|
We track bugs and issues using Github.
|
|
|
|
|
|
|
|
If you find a bug, please open an Issue.
|
|
|
|
|
|
|
|
If you want to fix a bug, please fork, create a feature branch, fix the bug and
|
|
|
|
open a PR back to this repo.
|
|
|
|
Please mention the open bug issue number within your PR if applicable.
|