Go to file
Štěpán Škorpil 21e2ac6172 Dockerfile: Fixed node version mismatch 2022-09-14 22:05:06 +02:00
application Deploy fixes 2022-09-14 21:47:09 +02:00
.dockerignore Fixed working version 2022-01-01 20:37:33 +01:00
.gitignore Fixed working version 2022-01-01 20:37:33 +01:00
Dockerfile Dockerfile: Fixed node version mismatch 2022-09-14 22:05:06 +02:00
LICENSE Fixed working version 2022-01-01 20:37:33 +01:00
README.md Replaced postgresql by elastic search 2022-09-14 21:16:00 +02:00

README.md

FediSearch

Search accounts and channels to follow on Fediverse

App makes queries to database of collected Fediverse feeds and nodes.

Only fulltext search is currently supported. More precise filtering is planned for one of the future releases.

Config

Configuration is done using environmental variables:

Variable Description Value example
ELASTIC_URL Url address of ElasticSearch server http://elastic:9200
ELASTIC_USER Username for EalsticSearch server elastic
ELASTIC_PASSWORD Username for EalsticSearch server empty
MATOMO_URL Optional url of Matomo server for collecting usage statistics. Leaving it empty disables collecting analytics. https://matomo.myserver.tld
MATOMO_SITE_ID Optional Matomo site id parameter for collecting usage statistics. Leaving it empty disables collecting analytics. 8
STATS_CACHE_MINUTES Optional number of minutes to cache heavily calculated stats data 60

Deploy

App is designed to be run in docker container and deployed using docker-compose. More info can be found in FediSearch example docker-compose project

For crawling Fediverse network and collecting feeds to database there is a companion app FediCrawl