]>
Commit | Line | Data |
---|---|---|
0e4ffb4b LA |
1 | #!/bin/sh |
2 | ||
3 | set -eu | |
93534495 C |
4 | |
5 | printf "############# PeerTube help #############\n\n" | |
6 | printf "npm run ...\n" | |
9a5d2a3f | 7 | printf " build -> Build the application for production (alias of build:client:prod)\n" |
ecb4e35f C |
8 | printf " build:server -> Build the server for production\n" |
9 | printf " build:client -> Build the client for production\n" | |
9a5d2a3f | 10 | printf " clean:client -> Clean the client build files (dist directory)\n" |
ecb4e35f | 11 | printf " clean:server:test -> Clean logs, uploads, database... of the test instances\n" |
01a07456 | 12 | printf " reset-password -- -u [user] -> Reset the password of user [user]\n" |
7491e2c5 C |
13 | printf " create-transcoding-job -- -v [video UUID] \n" |
14 | printf " -> Create a transcoding job for a particular video\n" | |
15 | printf " prune-storage -> Delete (after confirmation) unknown video files/thumbnails/previews... (due to a bad video deletion, transcoding job not finished...)\n" | |
edb4ffc7 | 16 | printf " optimize-old-videos -> Re-transcode videos that have a high bitrate, to make them suitable for streaming over slow connections" |
9a5d2a3f C |
17 | printf " dev -> Watch, run the livereload and run the server so that you can develop the application\n" |
18 | printf " start -> Run the server\n" | |
01a07456 | 19 | printf " update-host -> Upgrade scheme/host in torrent files according to the webserver configuration (config/ folder)\n" |
ecb4e35f | 20 | printf " client-report -> Open a report of the client dependencies module\n" |
9a5d2a3f C |
21 | printf " test -> Run the tests\n" |
22 | printf " help -> Print this help\n" |