Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lblod/tombstone-service
https://github.com/lblod/tombstone-service
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/lblod/tombstone-service
- Owner: lblod
- License: mit
- Created: 2024-10-29T09:18:03.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-10-29T09:22:23.000Z (3 months ago)
- Last Synced: 2024-10-29T11:39:01.160Z (3 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# tombstone-service
Microservice that creates a [tombstone](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tombstone) when a subject is deleted from the db.
## Installation
To add the service to your stack, add the following snippet to docker-compose.yml:
```
services:
tombstone:
image: lblod/tombstone-service```
## Configuration
### Delta
```
{
match: {
predicate: {
type: 'uri',
value: 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'
}
},
callback: {
method: 'POST',
url: 'http://tombstone/delta'
},
options: {
resourceFormat: 'v0.0.1',
gracePeriod: 1000,
ignoreFromSelf: true
}
},
```