Motore di ricerca video globale per istanze Peertube. Cercando una parola chiave, il servizio restituisce tutti i video dalle istanze peertube federate. E' possibile applicare un ordinare per data, durata o per lingua https://sepiasearch.peertube.uno
Go to file
Chocobozzz fdbf6ede5f
Fix body payload
2020-05-29 16:16:55 +02:00
PeerTube@99139e7753 Add blockedAccounts/blockedHosts support 2020-05-28 16:32:49 +02:00
config Move whitelist in config 2020-05-28 15:00:37 +02:00
server Fix body payload 2020-05-29 16:16:55 +02:00
support/systemd First commit 2020-02-13 11:49:03 +01:00
.eslintrc.json Fix body payload 2020-05-29 16:16:55 +02:00
.gitignore First commit 2020-02-13 11:49:03 +01:00
.gitmodules Use https for git 2020-03-04 11:45:39 +01:00
LICENSE First commit 2020-02-13 11:49:03 +01:00
README.md Move whitelist in config 2020-05-28 15:00:37 +02:00
package.json Add blockedAccounts/blockedHosts support 2020-05-28 16:32:49 +02:00
server.ts Fix body payload 2020-05-29 16:16:55 +02:00
tsconfig.json Index videos 2020-02-13 16:06:52 +01:00
yarn.lock Add blockedAccounts/blockedHosts support 2020-05-28 16:32:49 +02:00

README.md

Application behind search.joinpeertube.org

Dev

$ git submodule update --init --recursive
$ yarn install --pure-lockfile

The database (Elastic Search) is automatically created by PeerTube on startup.

Then run simultaneously (for example with 2 terminals):

$ tsc -w
$ node dist/server

Then open http://localhost:3234.

Production

Install dependencies:

  • NodeJS (v12)
  • Elastic Search

In the root of the cloned repo:

$ git submodule update --init --recursive
$ yarn install --pure-lockfile
$ npm run build
$ cp config/default.yaml config/production.yaml
$ vim config/production.yaml
$ node dist/server.js