Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lblod/package-bbcdr-rapporten-service
Microservice to package BBCDR reports for delivery to the backoffice
https://github.com/lblod/package-bbcdr-rapporten-service
mu-service
Last synced: 21 days ago
JSON representation
Microservice to package BBCDR reports for delivery to the backoffice
- Host: GitHub
- URL: https://github.com/lblod/package-bbcdr-rapporten-service
- Owner: lblod
- License: mit
- Created: 2018-05-04T15:18:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-16T15:01:18.000Z (3 months ago)
- Last Synced: 2024-09-17T18:01:17.965Z (3 months ago)
- Topics: mu-service
- Language: JavaScript
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Support: support.js
Awesome Lists containing this project
README
# packages-bbcdr-rapporten-service
Microservice that packages a bbcdr report by creating a zip file with the linked files and a metadata file.## installation
To add the service to your stack, add the following snippet to docker-compose.yml:```
services:
packagereports:
image: lblod/package-bbcdr-rapporten-service
```## REST API
### POST /package-bbcdr-reports/
Trigger packaging
Returns `202 Accepted` if the process was startedReturns `503 Service Unavailable` if already running
## Development
```
services:
packagereports:
image: semtech/mu-javascript-template
ports:
- 8888:80
environment:
NODE_ENV: "development"
volumes:
- /path/to/your/code:/app/
```