25 lines
543 B
Markdown
25 lines
543 B
Markdown
Merges several Gitea organizations' maven repositories to one path.
|
|
|
|
## usage
|
|
```shell
|
|
./maven-on-gitea-redirector-v0.1 config.json
|
|
```
|
|
|
|
## config
|
|
- `listen` - endpoint where this daemon will listen
|
|
- `domain` - domain where Gitea is listening
|
|
- `organizations` - list of Gitea organizations which should be included to search
|
|
```json
|
|
{
|
|
"listen": {
|
|
"maven": "localhost:49186",
|
|
"cargo": "localhost:49187"
|
|
},
|
|
"domain": "git.landgrafhomyak.ru",
|
|
"organizations": [
|
|
"xomrk",
|
|
"Multitasking",
|
|
"LanguageUtilities"
|
|
]
|
|
}
|
|
``` |