mirror of https://github.com/Chocobozzz/PeerTube
29329d6c45
* Comments and videos can be automatically tagged using core rules or watched word lists * These tags can be used to automatically filter videos and comments * Introduce a new video comment policy where comments must be approved first * Comments may have to be approved if the user auto block them using core rules or watched word lists * Implement FEP-5624 to federate reply control policies |
||
---|---|---|
.. | ||
scripts | ||
src | ||
.npmignore | ||
README.md | ||
package.json | ||
tsconfig.json | ||
yarn.lock |
README.md
PeerTube CLI
Usage
See https://docs.joinpeertube.org/maintain/tools#remote-tools
Dev
Install dependencies
cd peertube-root
yarn install --pure-lockfile
cd apps/peertube-cli && yarn install --pure-lockfile
Develop
cd peertube-root
npm run dev:peertube-cli
Build
cd peertube-root
npm run build:peertube-cli
Run
cd peertube-root
node apps/peertube-cli/dist/peertube-cli.js --help
Publish on NPM
cd peertube-root
(cd apps/peertube-cli && npm version patch) && npm run build:peertube-cli && (cd apps/peertube-cli && npm publish --access=public)