diff options
author | Chocobozzz <me@florianbigard.com> | 2019-06-11 09:11:33 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-06-11 09:12:42 +0200 |
commit | 4c3dbb7acd1d6be4697cfd319022b9a9fae6725b (patch) | |
tree | 81b34ba8b82793e0032cc8cf5f819319ac7926b1 /support/doc | |
parent | 1f20622f2b087eaf8738d60fae00a44b9c558ca3 (diff) | |
download | PeerTube-4c3dbb7acd1d6be4697cfd319022b9a9fae6725b.tar.gz PeerTube-4c3dbb7acd1d6be4697cfd319022b9a9fae6725b.tar.zst PeerTube-4c3dbb7acd1d6be4697cfd319022b9a9fae6725b.zip |
PeerTube only supports nodejs 8
Diffstat (limited to 'support/doc')
-rw-r--r-- | support/doc/dependencies.md | 8 | ||||
-rw-r--r-- | support/doc/tools.md | 1 |
2 files changed, 5 insertions, 4 deletions
diff --git a/support/doc/dependencies.md b/support/doc/dependencies.md index 77cec3ba3..1b27abaa7 100644 --- a/support/doc/dependencies.md +++ b/support/doc/dependencies.md | |||
@@ -26,7 +26,7 @@ | |||
26 | 26 | ||
27 | 3. Install certbot (choose instructions for nginx and your distribution) : | 27 | 3. Install certbot (choose instructions for nginx and your distribution) : |
28 | [https://certbot.eff.org/all-instructions](https://certbot.eff.org/all-instructions) | 28 | [https://certbot.eff.org/all-instructions](https://certbot.eff.org/all-instructions) |
29 | 4. Install NodeJS 8.x (current LTS): | 29 | 4. Install NodeJS 8.x: |
30 | [https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions](https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions) | 30 | [https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions](https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions) |
31 | 5. Install yarn, and be sure to have [a recent version](https://github.com/yarnpkg/yarn/releases/latest): | 31 | 5. Install yarn, and be sure to have [a recent version](https://github.com/yarnpkg/yarn/releases/latest): |
32 | [https://yarnpkg.com/en/docs/install#linux-tab](https://yarnpkg.com/en/docs/install#linux-tab) | 32 | [https://yarnpkg.com/en/docs/install#linux-tab](https://yarnpkg.com/en/docs/install#linux-tab) |
@@ -56,7 +56,7 @@ $ sudo systemctl start redis postgresql | |||
56 | 1. Run: | 56 | 1. Run: |
57 | 57 | ||
58 | ``` | 58 | ``` |
59 | $ sudo pacman -S nodejs yarn ffmpeg postgresql openssl redis git wget unzip python2 base-devel npm nginx | 59 | $ sudo pacman -S nodejs-lts-dubnium yarn ffmpeg postgresql openssl redis git wget unzip python2 base-devel npm nginx |
60 | ``` | 60 | ``` |
61 | 61 | ||
62 | Now that dependencies are installed, before running PeerTube you should start PostgreSQL and Redis: | 62 | Now that dependencies are installed, before running PeerTube you should start PostgreSQL and Redis: |
@@ -66,7 +66,7 @@ $ sudo systemctl start redis postgresql | |||
66 | 66 | ||
67 | ## CentOS 7 | 67 | ## CentOS 7 |
68 | 68 | ||
69 | 1. Install NodeJS 8.x (current LTS): | 69 | 1. Install NodeJS 8.x: |
70 | [https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora](https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora) | 70 | [https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora](https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora) |
71 | 2. Install yarn: | 71 | 2. Install yarn: |
72 | [https://yarnpkg.com/en/docs/install](https://yarnpkg.com/en/docs/install) | 72 | [https://yarnpkg.com/en/docs/install](https://yarnpkg.com/en/docs/install) |
@@ -114,7 +114,7 @@ su my-peertube-user | |||
114 | ``` | 114 | ``` |
115 | 2. (Optional) Install certbot (choose instructions for nginx and your distribution) : | 115 | 2. (Optional) Install certbot (choose instructions for nginx and your distribution) : |
116 | [https://certbot.eff.org/all-instructions](https://certbot.eff.org/all-instructions) | 116 | [https://certbot.eff.org/all-instructions](https://certbot.eff.org/all-instructions) |
117 | 3. Install NodeJS 8.x (current LTS): | 117 | 3. Install NodeJS 8.x: |
118 | [https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora](https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora) | 118 | [https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora](https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora) |
119 | 4. Install yarn: | 119 | 4. Install yarn: |
120 | [https://yarnpkg.com/en/docs/install](https://yarnpkg.com/en/docs/install) | 120 | [https://yarnpkg.com/en/docs/install](https://yarnpkg.com/en/docs/install) |
diff --git a/support/doc/tools.md b/support/doc/tools.md index c0f0b4ba1..ba6e2b12d 100644 --- a/support/doc/tools.md +++ b/support/doc/tools.md | |||
@@ -36,6 +36,7 @@ You need to follow all the following steps even if you are on a PeerTube server | |||
36 | ### Dependencies | 36 | ### Dependencies |
37 | 37 | ||
38 | Install the [PeerTube dependencies](dependencies.md) except PostgreSQL and Redis. | 38 | Install the [PeerTube dependencies](dependencies.md) except PostgreSQL and Redis. |
39 | PeerTube only supports NodeJS 8.x or 10.x. | ||
39 | 40 | ||
40 | ### Installation | 41 | ### Installation |
41 | 42 | ||