https://github.com/driebit/zotonic_mod_wikiconcept
Zotonic module to use Wikidata concepts as keyword.
https://github.com/driebit/zotonic_mod_wikiconcept
Last synced: about 1 month ago
JSON representation
Zotonic module to use Wikidata concepts as keyword.
- Host: GitHub
- URL: https://github.com/driebit/zotonic_mod_wikiconcept
- Owner: driebit
- License: apache-2.0
- Created: 2024-01-25T09:00:20.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T09:06:27.000Z (over 1 year ago)
- Last Synced: 2025-01-28T19:18:35.927Z (over 1 year ago)
- Language: Erlang
- Size: 54.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zotonic_mod_wikiconcept
Zotonic module to use Wikidata concepts from OpenAlex as keywords.
## PostgreSQL Trigram search
This module uses the `pg_trgm` extension for fulltext search of concepts.
The extension will be created in the `public` schema, ensure that the Zotonic
database user has access to that schema.
Note that `pg_trgm` is “trusted”, that is, it can be installed by non-superusers who
have CREATE privilege on the current database.
The query used to create the extension:
```sql
create extension if not exists pg_trgm with schema public
```