https://github.com/commonjava/indy-repository-service
Indy Repository Management Service
https://github.com/commonjava/indy-repository-service
Last synced: 11 months ago
JSON representation
Indy Repository Management Service
- Host: GitHub
- URL: https://github.com/commonjava/indy-repository-service
- Owner: Commonjava
- License: apache-2.0
- Created: 2021-01-15T12:17:35.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-24T11:03:46.000Z (over 1 year ago)
- Last Synced: 2024-10-25T09:58:35.038Z (over 1 year ago)
- Language: Java
- Size: 1000 KB
- Stars: 0
- Watchers: 7
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Indy Repository Management Service
Indy Repository Management Service is a single full-functional service for only indy repository management, including repository creation, updating, querying and deleting.
## Prerequisite for building
1. jdk11
2. mvn 3.6.2+
## Prerequisite for debugging in local
1. docker 20+
2. docker-compose 1.20+
## Configure
see [src/main/resources/application.yaml](./src/main/resources/application.yaml) for details
## Try it
There are a few steps to set it up.
1. Build (make sure you use jdk11 and mvn 3.6.2+)
```
$ git clone git@github.com:Commonjava/indy-repository-service.git
$ cd indy-repository-service
$ mvn clean compile
```
2. Start depending services:
```
$ docker-compose up
```
2. Start in debug mode
```
$ mvn quarkus:dev
```