1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/peertube_ynh.git synced 2024-09-03 19:56:29 +02:00
peertube_ynh/README.md
2019-06-23 15:53:45 +02:00

1.7 KiB

ovh_fix branch for peertube_ynh

If installing on an ovh virtual machine or having gyp ERR! configure error please follow the steps indicated in Chocobozzz/PeerTube#830 (comment)

Steps for installing

  1. Install nodejs
$ curl -sL https://deb.nodesource.com/setup_8.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