lincd-fuseki
v1.0.0
Published
Lincd Fuseki Store – Env Vars =============================
Maintainers
Readme
Lincd Fuseki Store – Env Vars
The FusekiStore sends SPARQL over HTTP to a Fuseki dataset. Configure it via environment variables (single names per concept).
Base and dataset
- FUSEKI_BASE_URL (required): e.g.
http://localhost:3333(host) orhttp://fuseki:3030in Docker. - FUSEKI_DATASET (required): dataset name (e.g.
cn-core). - FUSEKI_DEFAULT_GRAPH (optional): graph IRI to target; if unset, factories fall back to
process.env.DATA_ROOT.
Auth
- FUSEKI_USER (optional): basic auth user.
- FUSEKI_PASSWORD (optional): basic auth password.
Examples
FUSEKI_BASE_URL=http://localhost:3333
FUSEKI_DATASET=cn-core
FUSEKI_DEFAULT_GRAPH=https://create.now/data
FUSEKI_USER=admin
FUSEKI_PASSWORD=adminNotes
- Inserts/updates are POSTed to
/update; selects use/sparql. - Trimming trailing slashes is handled automatically; dataset and standard Fuseki paths are appended.
