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
dbbf47bba3 | ||
---|---|---|
PeerTube@68ca61941e | ||
config | ||
server | ||
support/systemd | ||
.eslintrc.json | ||
.gitignore | ||
.gitmodules | ||
LICENSE | ||
README.md | ||
package.json | ||
server.ts | ||
tsconfig.json | ||
yarn.lock |
README.md
Application behind search.joinpeertube.org
Dev
$ git submodule update --init --recursive
$ yarn install --pure-lockfile
Initialize the database:
$ sudo -u postgres createuser -P peertube
$ sudo -u postgres createdb -O peertube peertube_search_index
Then run simultaneously (for example with 2 terminals):
$ tsc -w
$ node dist/server
Then open http://localhost:3234.
Production
In the root of the cloned repo:
$ git submodule update --init --recursive
$ yarn install --pure-lockfile
$ npm run build
$ node dist/server.js