Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sdeleuze/image-service
https://github.com/sdeleuze/image-service
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sdeleuze/image-service
- Owner: sdeleuze
- Created: 2022-12-02T11:35:31.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-18T16:35:24.000Z (about 2 years ago)
- Last Synced: 2025-01-05T21:16:37.677Z (19 days ago)
- Language: Java
- Size: 3.45 MB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Image service that leverages Azure Storage and Azure Computer Vision via a Spring Boot 3 application that can be compiled to native.
## Configure following configuration properties
```
spring.cloud.azure.storage.blob.account-name=...
spring.cloud.azure.storage.blob.account-key=...
spring.cloud.azure.storage.blob.endpoint=...
vision.url=...
vision.key=...
```## Build & run
To build as a native executable
```
./mvnw -Pnative clean native:compile
target/image-service
```To build a native container image for deployment in the Cloud
```
./mvnw -Pnative clean spring-boot:build-image
```