From 0c8e4ebee9fd3d347177b7766eb30344f28ac1d5 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Sun, 21 Aug 2016 12:06:01 +0200 Subject: Update README roadmap --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 1a3470711..e5c113bc8 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ Thanks to [WebTorrent](https://github.com/feross/webtorrent), we can make P2P (t - [ ] Admin panel - [ ] Stats about the network (how many friends, how many requests per hour...) - [ ] Stats about videos - - [ ] Manage users (create/remove) + - [X] Manage users (create/remove) ## Installation -- cgit v1.2.3 From 50e708d5a07299dad3550f2f283c5131d0cec0f3 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 23 Aug 2016 11:45:18 +0200 Subject: Update README roadmap --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index e5c113bc8..23189d667 100644 --- a/README.md +++ b/README.md @@ -96,8 +96,8 @@ Thanks to [WebTorrent](https://github.com/feross/webtorrent), we can make P2P (t - [ ] Manage API breaks - [ ] Add "DDOS" security (check if a pod don't send too many requests for example) - [ ] Admin panel - - [ ] Stats about the network (how many friends, how many requests per hour...) - [ ] Stats about videos + - [X] Friends list - [X] Manage users (create/remove) -- cgit v1.2.3 From 732bd032409c7ccee44654b26ea1394478c63212 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 21 Sep 2016 22:27:04 +0200 Subject: Update readme dependencies (npm >= 3) --- README.md | 2 ++ 1 file changed, 2 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index 23189d667..9dab73d09 100644 --- a/README.md +++ b/README.md @@ -111,6 +111,7 @@ Thanks to [WebTorrent](https://github.com/feross/webtorrent), we can make P2P (t ### Dependencies * **NodeJS >= 4.2** + * **npm >= 3.0** * OpenSSL (cli) * MongoDB * ffmpeg xvfb-run libgtk2.0-0 libgconf-2-4 libnss3 libasound2 libxtst6 libxss1 libnotify-bin (for electron) @@ -123,6 +124,7 @@ Thanks to [WebTorrent](https://github.com/feross/webtorrent), we can make P2P (t # apt-get update # apt-get install ffmpeg mongodb openssl xvfb curl sudo git build-essential libgtk2.0-0 libgconf-2-4 libnss3 libasound2 libxtst6 libxss1 libnotify-bin + # npm install -g npm@3 # npm install -g electron-prebuilt #### Other distribution... (PR welcome) -- cgit v1.2.3 From 19a08a34986c8c242ac3032eb49131938cfe7252 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Sat, 1 Oct 2016 09:57:05 +0200 Subject: Update README roadmap --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 9dab73d09..a9b2932c7 100644 --- a/README.md +++ b/README.md @@ -95,10 +95,12 @@ Thanks to [WebTorrent](https://github.com/feross/webtorrent), we can make P2P (t - [ ] Validate the prototype (test PeerTube in a real world with many pods and videos) - [ ] Manage API breaks - [ ] Add "DDOS" security (check if a pod don't send too many requests for example) -- [ ] Admin panel - - [ ] Stats about videos +- [X] Admin panel + - [X] Stats - [X] Friends list - [X] Manage users (create/remove) +- [ ] User playlists +- [ ] User subscriptions (by tags, author...) ## Installation -- cgit v1.2.3 From 10d0963eec1c9ae6d534e5eecb34ec807596d4a9 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Sat, 1 Oct 2016 11:30:23 +0200 Subject: Add systemd/nginx template link in README --- README.md | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index a9b2932c7..a83bfe7be 100644 --- a/README.md +++ b/README.md @@ -164,6 +164,10 @@ Finally, run the server with the `production` `NODE_ENV` variable set. $ NODE_ENV=production npm start +**Nginx template** (reverse proxy): https://github.com/Chocobozzz/PeerTube/tree/master/support/nginx + +**Systemd template**: https://github.com/Chocobozzz/PeerTube/tree/master/support/systemd + ### Other commands To print all available command run: -- cgit v1.2.3 From 35165e1669f0525fbd1f6b41cf5dd076b326057b Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Sat, 1 Oct 2016 11:49:32 +0200 Subject: Electron-prebuilt -> electron --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index a83bfe7be..975ec1695 100644 --- a/README.md +++ b/README.md @@ -127,7 +127,7 @@ Thanks to [WebTorrent](https://github.com/feross/webtorrent), we can make P2P (t # apt-get update # apt-get install ffmpeg mongodb openssl xvfb curl sudo git build-essential libgtk2.0-0 libgconf-2-4 libnss3 libasound2 libxtst6 libxss1 libnotify-bin # npm install -g npm@3 - # npm install -g electron-prebuilt + # npm install -g electron #### Other distribution... (PR welcome) -- cgit v1.2.3 From a67b3e7619353d7eb1f3e6064ebe3041094a8b70 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Sat, 1 Oct 2016 18:19:57 +0200 Subject: Add experimental demo servers link in readme --- README.md | 1 + 1 file changed, 1 insertion(+) (limited to 'README.md') diff --git a/README.md b/README.md index 975ec1695..777df6d7d 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,7 @@ Want to see in action? * You can directly test in your browser with this [demo server](http://peertube.cpy.re). Don't forget to use the latest version of Firefox/Chromium/(Opera?) and check your firewall configuration (for WebRTC) * You can find [a video](https://vimeo.com/164881662 "Yes Vimeo, please don't judge me") to see how the "decentralization feature" looks like + * Experimental demo servers that share videos (they are in the same network): [peertube2](http://peertube2.cpy.re), [peertube3](http://peertube3.cpy.re). Since I do experiments with them, sometimes they might not work correctly. ## Why -- cgit v1.2.3