diff options
author | Chocobozzz <me@florianbigard.com> | 2018-01-12 18:07:41 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-01-12 18:07:41 +0100 |
commit | 63bfad7ec984dad1e9a96de1f191db5cc78db5bf (patch) | |
tree | fe003158afa1ab6795652ae114c08be580078efb /support/doc/dependencies.md | |
parent | 339632b4a3f94a6ebee3767054ef6c701858a785 (diff) | |
download | PeerTube-63bfad7ec984dad1e9a96de1f191db5cc78db5bf.tar.gz PeerTube-63bfad7ec984dad1e9a96de1f191db5cc78db5bf.tar.zst PeerTube-63bfad7ec984dad1e9a96de1f191db5cc78db5bf.zip |
Try to improve documentations/readme
Diffstat (limited to 'support/doc/dependencies.md')
-rw-r--r-- | support/doc/dependencies.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/support/doc/dependencies.md b/support/doc/dependencies.md new file mode 100644 index 000000000..d77724b5a --- /dev/null +++ b/support/doc/dependencies.md | |||
@@ -0,0 +1,29 @@ | |||
1 | # Installation | ||
2 | |||
3 | ## Dependencies | ||
4 | |||
5 | ### Debian / Ubuntu | ||
6 | |||
7 | 1. Install NodeJS 8.x (current LTS): | ||
8 | [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) | ||
9 | 2. Install yarn: | ||
10 | [https://yarnpkg.com/en/docs/install](https://yarnpkg.com/en/docs/install) | ||
11 | 4. Run: | ||
12 | |||
13 | ```bash | ||
14 | $ apt-get update | ||
15 | $ apt-get install nginx ffmpeg postgresql openssl g++ make | ||
16 | ``` | ||
17 | |||
18 | ### Arch Linux | ||
19 | |||
20 | 1. Run: | ||
21 | |||
22 | ```bash | ||
23 | $ pacman -S nodejs yarn ffmpeg postgresql openssl | ||
24 | ``` | ||
25 | |||
26 | ### Other distributions | ||
27 | |||
28 | Feel free to update this file in a pull request! | ||
29 | |||