diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-07-22 11:53:55 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-07-22 11:53:55 +0200 |
commit | f018f38e0dbb58d829a2ca33b38449056e451502 (patch) | |
tree | 2cab83ada7126f064015b9f605b381ad443df56b /support/doc | |
parent | 6dde6a31e3dfb0298e3f7171b2f8ad9bab1f2370 (diff) | |
download | PeerTube-f018f38e0dbb58d829a2ca33b38449056e451502.tar.gz PeerTube-f018f38e0dbb58d829a2ca33b38449056e451502.tar.zst PeerTube-f018f38e0dbb58d829a2ca33b38449056e451502.zip |
Typos
Diffstat (limited to 'support/doc')
-rw-r--r-- | support/doc/server/code.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/support/doc/server/code.md b/support/doc/server/code.md index d49d120e9..351461242 100644 --- a/support/doc/server/code.md +++ b/support/doc/server/code.md | |||
@@ -49,7 +49,7 @@ The `NODE_ENV=test` is set to speed up communications between pods (see [constan | |||
49 | 49 | ||
50 | `npm run help` give you all available commands. | 50 | `npm run help` give you all available commands. |
51 | 51 | ||
52 | If you want to test the decentralization feature, you can easily run 3 pods by runnin `npm run play`. The pods password are `test1`, `test2` and `test3`. | 52 | If you want to test the decentralization feature, you can easily run 3 pods by running `npm run play`. The pods password are `test1`, `test2` and `test3`. |
53 | 53 | ||
54 | 54 | ||
55 | ## Architecture | 55 | ## Architecture |
@@ -64,9 +64,9 @@ The seperate Electron process has the goal to seed videos through WebRTC because | |||
64 | 64 | ||
65 | ![Architecture scheme](https://github.com/Chocobozzz/PeerTube/blob/master/support/doc/server/upload-video.png) | 65 | ![Architecture scheme](https://github.com/Chocobozzz/PeerTube/blob/master/support/doc/server/upload-video.png) |
66 | 66 | ||
67 | When an user upload a video, the rest API asks the Electron process to seed it (communicate with IPC) and then adds it to its Mongo database. | 67 | When a user upload a video, the rest API asks the Electron process to seed it (communicate with IPC) and then adds it to its Mongo database. |
68 | 68 | ||
69 | If an user wants to watch the video, the tracker will indicate all other users that are watching the video + the Electron process. | 69 | If a user wants to watch the video, the tracker will indicate all other users that are watching the video + the Electron process. |
70 | 70 | ||
71 | ## Newcomers | 71 | ## Newcomers |
72 | 72 | ||