Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,16 @@ make build
bin/bucketrepo -config-path=config -log-level=debug
```

to debug:
```bash
sudo dlv --listen=:2345 --headless=true --api-version=2 exec ./bin/bucketrepo -- -config-path=config -log-level=debug
```
your config can be copied from the server using a command like this:
```bash
kubectl -n jx get secret bucketrepo-config -o jsonpath='{.data.config\.yaml}' | base64 -d > ./config/config.yaml
```
Do not forget to copy your env variables...

### Maven Configuration

`bucketrepo`can be configured as a mirror by adding the following in `~/.m2/settings.xml` file:
Expand Down