mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-12-05 01:10:36 +00:00
* Remove filename from VideoSource * Remove commentsEnabled from REST API & ActivityPub * Remove redundancies.files from VideoRedundancy * Correctly deprecate captionPath from VideoCaption * Correctly deprecate path from ActorImage * Correctly deprecate storyboardPath from Storyboard
PeerTube runner
Runner program to execute jobs (transcoding...) of remote PeerTube instances.
Commands below has to be run at the root of PeerTube git repository.
Dev
Install dependencies
cd peertube-root
npm run install-node-dependencies
Develop
cd peertube-root
npm run dev:peertube-runner
Build
cd peertube-root
npm run build:peertube-runner
Run
cd peertube-root
node apps/peertube-runner/dist/peertube-runner.js --help
Publish on NPM
cd peertube-root
(cd apps/peertube-runner && npm version patch) && npm run build:peertube-runner && (cd apps/peertube-runner && npm publish --access=public)