You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
744 B
744 B
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
yarn install --pure-lockfile
cd apps/peertube-runner && yarn install --pure-lockfile
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)