{"id":47219032,"url":"https://github.com/buda-base/lds-pdi","last_synced_at":"2026-03-13T17:08:21.699Z","repository":{"id":46949022,"uuid":"116034818","full_name":"buda-base/lds-pdi","owner":"buda-base","description":"http://purl.bdrc.io BDRC Linked Data Server","archived":false,"fork":false,"pushed_at":"2025-11-17T14:24:41.000Z","size":3551,"stargazers_count":3,"open_issues_count":61,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2026-01-19T19:43:58.064Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/buda-base.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-01-02T16:28:26.000Z","updated_at":"2025-11-17T14:24:45.000Z","dependencies_parsed_at":"2023-02-17T21:31:07.498Z","dependency_job_id":"2bdf4cdc-9047-4d38-8014-3c840a70d71d","html_url":"https://github.com/buda-base/lds-pdi","commit_stats":null,"previous_names":[],"tags_count":33,"template":false,"template_full_name":null,"purl":"pkg:github/buda-base/lds-pdi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buda-base%2Flds-pdi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buda-base%2Flds-pdi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buda-base%2Flds-pdi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buda-base%2Flds-pdi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/buda-base","download_url":"https://codeload.github.com/buda-base/lds-pdi/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buda-base%2Flds-pdi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30471140,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-13T11:00:43.441Z","status":"ssl_error","status_checked_at":"2026-03-13T11:00:23.173Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-03-13T17:08:21.000Z","updated_at":"2026-03-13T17:08:21.691Z","avatar_url":"https://github.com/buda-base.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LDS-PDI\n\nA.k.a. *Linked Data Server - Public Data Interface*\n\n## Features\n\nThe server provides APIs to:\n- serve RDF resources in different serializations (ttl, jsonld, etc.)\n- serve an RDF vocabulary, providing convenient html pages to describe the classes and properties\n- run pre-defined SPARQL queries, passing arguments in URL\n- augment the SPARQL results with some facet information\n\nThe API and routes provided by the server are described in a separate document: [API.md](API.md).\n\n## Deployment\n\n### Running locally\n\nYou can run the server locally with a maven command:\n\n```\nmvn spring-boot:run -Dldspdi.configpath=/my/configfile/dir/ -Dspring.profiles.active=local\n```\n\nSee below for an example for an explanation of the configpath argument). This will make the server accessible on\n\n```\nhttp://localhost:8080\n```\n\n### Building a jar\n\nFor deployment in a web server environment (Tomcat, Jetty, etc.) you can compile a jar file with:\n\n```\nmvn clean package\n```\n\nand deploy it in your environment.\n\n## Configuration\n\n### Configuration file\n\nThe configuration of the server must be recorded in a property file named `ldspdi.properties` (see next paragraph for its location). A commented template is provided: [ldspdi.properties.template](ldspdi.properties.template), please use it as a documentation and model for the configuration file.\n\n### Configuration directory\n\nThe path of the directory containing `ldspdi.properties` must be passed to the server through a system property called `ldspdi.configpath`. You can pass this value when starting your server from the command line, here's an example setting it when running locally:\n\n```\nmvn spring-boot:run -Dldspdi.configpath=/my/configfile/dir/ -Dspring.profiles.active=local\n```\n\nNote that the [buda-base](https://github.com/buda-base/buda-base) environment sets the config path to `/etc/buda/ldspdi/`, so the only thing you need to do is to copy your configuration file to `/etc/buda/ldspdi/ldspdi.properties`.\n\n### Webhooks (optional)\n\nIn order for the SPARQL queries and the ontology synchronize in real time with the git repositories, you can use a webhook mechanism. Typically you can configure github to send a message to `/callbacks/github/owl-schema` and `/callbacks/github/lds-queries`. This is not necessary for the platform to function, and you can call these webhooks manually (in a daily cron for instance) to get updates.\n\n## Copyright and License\n\nAll the code and API are Copyright (C) 2017 Buddhist Digital Resource Center and are under the Apache 2.0 Public License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbuda-base%2Flds-pdi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbuda-base%2Flds-pdi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbuda-base%2Flds-pdi/lists"}