1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/peertube_ynh.git synced 2024-09-03 19:56:29 +02:00
Federated (ActivityPub) video streaming platform using P2P for YunoHost
Find a file
2019-10-16 23:25:26 +02:00
conf Upgrade to 1.4.1 2019-10-16 23:12:18 +02:00
scripts Upgrade to 1.4.1 2019-10-16 23:12:18 +02:00
.travis.yml Adding automations 2019-05-22 17:55:10 +02:00
check_process Upgrade to 1.4.1 2019-10-16 23:12:18 +02:00
LICENSE commits to make the app in working state 2017-12-11 09:58:25 +05:30
manifest.json Upgrade to 1.4.1 2019-10-16 23:12:18 +02:00
pull_request_template.md Update pull_request_template.md 2019-06-13 23:52:30 +02:00
README.md Upgrade to 1.4.1 2019-10-16 23:12:18 +02:00

ovh_fix branch for peertube_ynh

If installing on an ovh virtual machine or having gyp ERR! configure error please follow the steps below

Steps for installing

  1. Install nodejs
$ curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
$ sudo apt-get install -y nodejs
  1. Install the peertube with OVH fix branch.
$ yunohost app install https://github.com/YunoHost-Apps/peertube_ynh/tree/ovh_fix --debug
  1. After installation is complete run yarn install.
$ cd /var/www/peertube && yarn install --production --pure-lockfile
  1. Give proper permissions to peertube
$ chown -R peertube:peertube /var/www/peertube
  1. Restart peertube and check if there is any error message.
$ service peertube restart
$ journalctl -feu peertube
  1. If there is no error in red in the last lines of log. Press ctrl+c to stop the logs.

  2. Go to your domain to check if peertube is running and everthing is ok.

  3. Change your root password by this command:

    $ cd /var/www/peertube && NODE_CONFIG_DIR="/var/www/peertube/config/" NODE_ENV=production npm run reset-password -- -u root

Username: root password: created in above step

Steps for upgrading

  1. Upgrade peertube with OVH fix branch.
$ yunohost app upgrade peertube -u https://github.com/YunoHost-Apps/peertube_ynh/tree/ovh_fix --debug
  1. After upgrade is complete run yarn install.
$ cd /var/www/peertube && yarn install --production --pure-lockfile
  1. Give proper permissions to peertube
$ chown -R peertube:peertube /var/www/peertube
  1. Restart peertube and check if there is any error message.
$ service peertube restart