Skip to content

Commit

Permalink
Clarify current limitation to JSKOS-API
Browse files Browse the repository at this point in the history
  • Loading branch information
nichtich committed Mar 12, 2024
1 parent 10eb9f5 commit 4283e6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Instances of jskos-proxy are configured with environment variables, in local fil
- `PORT` - which port to run the service on (default: `3555`)
- `HMR_PORT` - port for Vite hot module reloading in development (default: `3556`)
- `NAMESPACE` - URI namespace of all objects served via this proxy. Must end with a slash (default: `http://example.org/`)
- `BACKEND` - JSKOS API base URL or local NDJSON file
- `BACKEND` - JSKOS API base URL (supports multiple vocabularies) or local NDJSON file (single vocabulary only)
- `LISTING` - whether to show list of vocabularies from backend API on NAMESPACE URL (enabled by default, disable with `0` or `false`)
- `TITLE` - Title of the service (default `JSKOS Proxy`)
- `LOGO` - optional logo image file, must be placed in `public` directory
Expand Down
1 change: 1 addition & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ const backend = body.dataset.backend
var registry
if (backend.match(/^https?:/)) {
// Expect JSKOS API to retrieve vocabularies and concepts
registry = cdk.initializeRegistry({
provider: "ConceptApi",
status: backend+"status",
Expand Down

0 comments on commit 4283e6e

Please sign in to comment.