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 8c5f53c11f
Add source code link in footer
2020-09-02 11:53:15 +02:00
PeerTube@b2c76204f9 Add client 2020-09-01 11:04:45 +02:00
client Add source code link in footer 2020-09-02 11:53:15 +02:00
config Add ability to change language 2020-09-02 10:20:39 +02:00
server Add ability to change language 2020-09-02 10:20:39 +02:00
shared Add ability to change language 2020-09-02 10:20:39 +02:00
support Add nginx template 2020-08-13 08:05:59 +02: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 Add ability to change language 2020-09-02 10:20:39 +02:00
index.template.html Add HTML template 2020-07-23 14:02:36 +02:00
package.json Fix install 2020-09-01 13:54:11 +02:00
server.ts Add client 2020-09-01 11:04:45 +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 at startup.

Run simultaneously (for example with 3 terminals):

$ tsc -w
$ node dist/server
$ cd client && npm run serve

Then open http://localhost:8080.

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