From: Bigard Florian Date: Fri, 8 Sep 2017 14:36:01 +0000 (+0200) Subject: Updated Debian Jessie production installation guide (markdown) X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6ea45669ab9f9f4ae49a6f30c8b1d3b82f773b57;p=oweals%2Fpeertube.wiki.git Updated Debian Jessie production installation guide (markdown) --- diff --git a/Debian-Jessie-production-installation-guide.md b/Debian-Jessie-production-installation-guide.md index 71789ae..bf5659d 100644 --- a/Debian-Jessie-production-installation-guide.md +++ b/Debian-Jessie-production-installation-guide.md @@ -10,7 +10,6 @@ We need to install dependencies: # apt-get upgrade -y # curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - # apt-get install -y nodejs ffmpeg postgresql-9.4 openssl nginx yarn - # npm install -g npm@3 # Database We need to create the database: @@ -20,7 +19,7 @@ We need to create the database: CREATE USER peertube WITH PASSWORD 'peertube'; CREATE DATABASE peertube_prod OWNER peertube; - GRANT ALL PRIVILEGES ON DATABASE peertube to peertube; + GRANT ALL PRIVILEGES ON DATABASE peertube_prod to peertube; \q # User @@ -40,7 +39,7 @@ Master branch is for production, develop branch is for... development. $ cd /home/peertube $ git clone -b master https://github.com/Chocobozzz/PeerTube $ cd PeerTube - $ npm install + $ yarn install $ npm run build # Configuration files