1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-07-03 01:07:02 +02:00
Files
.github
contrib
docs
assets
configuration
logos
.gitignore
0_index.md
1_installation.md
2_auth.md
404.html
4_tls.md
5_endpoints.md
6_request_signatures.md
Gemfile
Gemfile.lock
Makefile
README.md
_config.yml
pkg
providers
test
.dockerignore
.gitignore
.golangci.yml
.travis.yml
CHANGELOG.md
CONTRIBUTING.md
Dockerfile
Dockerfile.arm64
Dockerfile.armv6
LICENSE
MAINTAINERS
Makefile
README.md
RELEASE.md
dist.sh
go.mod
go.sum
http.go
http_test.go
logging_handler.go
logging_handler_test.go
main.go
nsswitch.conf
oauthproxy.go
oauthproxy_test.go
templates.go
templates_test.go
validator.go
validator_test.go
version.go
watcher.go
watcher_unsupported.go
oauth2-proxy/docs/Makefile

20 lines
394 B
Makefile
Raw Normal View History

.PHONY: ruby
ruby:
@ if [ ! $$(which ruby) ]; then \
echo "Please install ruby version 2.5.0 or higher"; \
fi
.PHONY: bundle
bundle: ruby
@ if [ ! $$(which bundle) ]; then \
echo "Please install bundle: `gem install bundler`"; \
fi
vendor/bundle: bundle
bundle config set --local path 'vendor/bundle'
bundle install
.PHONY: serve
serve: vendor/bundle
bundle exec jekyll serve