]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - .github/CONTRIBUTING.md
Add automated dev setup using Gitpod
[github/Chocobozzz/PeerTube.git] / .github / CONTRIBUTING.md
CommitLineData
7a7edb72
C
1# Welcome to the contributing guide for PeerTube
2
71607e4a 3Interested in contributing? Awesome!
7a7edb72 4
e2266e4f 5**This guide will present you the following contribution topics:**
7a7edb72 6
6a1787c1 7 * [Translate](#translate)
7a7edb72 8 * [Give your feedback](#give-your-feedback)
7a7edb72 9 * [Write documentation](#write-documentation)
63bfad7e 10 * [Develop](#develop)
0e62b72b 11 * [Improve the website](#improve-the-website)
e2266e4f
RK
12 * [Troubleshooting](#troubleshooting)
13 * [Tutorials](#tutorials)
7a7edb72 14
6a1787c1
C
15## Translate
16
17You can help us to translate the PeerTube interface to many languages! See [the documentation](/support/doc/translation.md) to know how.
18
19
7a7edb72
C
20## Give your feedback
21
e755a63a
BB
22You don't need to know how to code to start contributing to PeerTube! Other
23contributions are very valuable too, among which: you can test the software and
24report bugs, you can give feedback on potential bugs, features that you are
63bfad7e 25interested in, user interface, design, decentralized architecture...
7a7edb72
C
26
27
63bfad7e 28## Write documentation
7a7edb72 29
63bfad7e 30You can help to write the documentation of the REST API, code, architecture,
d59a8da8
C
31demonstrations.
32
33For the REST API you can see the documentation in [/support/doc/api](/support/doc/api) directory.
34Then, you can just open the `openapi.yaml` file in a special editor like [http://editor.swagger.io/](http://editor.swagger.io/) to easily see and edit the documentation.
35
36Some hints:
37 * Routes are defined in [/server/controllers/](/server/controllers/) directory
38 * Parameters validators are defined in [/server/middlewares/validators](/server/middlewares/validators) directory
39 * Models sent/received by the controllers are defined in [/shared/models](/shared/models) directory
40
7a7edb72 41
0e62b72b
TK
42## Improve the website
43
44PeerTube's website is [joinpeertube.org](https://joinpeertube.org), where people can learn about the project and how it works – note that it is not a PeerTube instance, but rather the project's homepage.
45
46You can help us improve it too!
47
48It is not hosted on GitHub but on [Framasoft](https://framasoft.org/)'s own [GitLab](https://about.gitlab.com/) instance, [FramaGit](https://framagit.org): https://framagit.org/framasoft/peertube/joinpeertube
49
50
63bfad7e 51## Develop
7a7edb72 52
7193ad10 53Don't hesitate to talk about features you want to develop by creating/commenting an issue
e755a63a 54before you start working on them :).
7a7edb72 55
63bfad7e 56### Prerequisites
7a7edb72 57
a43e2182 58First, you should use a server or PC with at least 4GB of RAM. Less RAM may lead to crashes.
59
0cfcbae8
JK
60Make sure that you have followed
61[the steps](/support/doc/dependencies.md)
63bfad7e 62to install the dependencies.
e755a63a 63
63bfad7e 64Then clone the sources and install node modules:
e755a63a 65
afe81767 66```
c263f3b4 67$ git clone https://github.com/Chocobozzz/PeerTube
63bfad7e
C
68$ cd PeerTube
69$ yarn install --pure-lockfile
70```
e755a63a 71
dd07afa5
FA
72Note that development is done on the `develop` branch. If you want to hack on
73Peertube, you should switch to that branch. Also note that you have to repeat
74the `yarn install --pure-lockfile` command.
75
e755a63a
BB
76Then, create a postgres database and user with the values set in the
77`config/default.yaml` file. For instance, if you do not change the values
78there, the following commands would create a new database called `peertube_dev`
79and a postgres user called `peertube` with password `peertube`:
80
afe81767 81```
63bfad7e
C
82# sudo -u postgres createuser -P peertube
83Enter password for new role: peertube
84# sudo -u postgres createdb -O peertube peertube_dev
e755a63a
BB
85```
86
dd07afa5
FA
87Then enable extensions PeerTube needs:
88
89```
90$ sudo -u postgres psql -c "CREATE EXTENSION pg_trgm;" peertube_dev
91$ sudo -u postgres psql -c "CREATE EXTENSION unaccent;" peertube_dev
92```
93
63bfad7e
C
94In dev mode, administrator username is **root** and password is **test**.
95
0cfcbae8
JK
96### Online development
97
98You can get a complete PeerTube development setup with Gitpod, a free one-click online IDE for GitHub:
99
100[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/Chocobozzz/PeerTube)
101
e755a63a
BB
102### Server side
103
63bfad7e
C
104You can find a documentation of the server code/architecture [here](/support/doc/development/server/code.md).
105
e755a63a
BB
106To develop on the server-side:
107
afe81767 108```
63bfad7e 109$ npm run dev:server
e755a63a
BB
110```
111
112Then, the server will listen on `localhost:9000`. When server source files
113change, these are automatically recompiled and the server will automatically
19096851 114restart.
e755a63a
BB
115
116### Client side
117
63bfad7e
C
118You can find a documentation of the server code/architecture
119[here](/support/doc/development/client/code.md).
120
121
e755a63a
BB
122To develop on the client side:
123
afe81767 124```
63bfad7e 125$ npm run dev:client
e755a63a
BB
126```
127
128The API will listen on `localhost:9000` and the frontend on `localhost:3000`.
129Client files are automatically compiled on change, and the web browser will
130reload them automatically thanks to hot module replacement.
7a7edb72 131
19096851
C
132### Client and server side
133
134The API will listen on `localhost:9000` and the frontend on `localhost:3000`.
135File changes are automatically recompiled, injected in the web browser (no need to refresh manually)
136and the web server is automatically restarted.
137
138```
139$ npm run dev
140```
141
e2266e4f 142### Testing the federation of PeerTube servers
35a12fee 143
a9ab599e
C
144Create a PostgreSQL user **with the same name as your username** in order to avoid using the *postgres* user.
145Then, we can create the databases (if they don't already exist):
a2897212
C
146
147```
a9ab599e
C
148$ sudo -u postgres createuser you_username --createdb
149$ createdb -O peertube peertube_test{1,2,3}
a2897212
C
150```
151
152Build the application and flush the old tests data:
7a7edb72 153
afe81767 154```
9ba1d64b 155$ npm run build -- --light
63bfad7e 156$ npm run clean:server:test
a2897212
C
157```
158
159This will run 3 nodes:
160
161```
63bfad7e
C
162$ npm run play
163```
7a7edb72 164
63bfad7e
C
165Then you will get access to the three nodes at `http://localhost:900{1,2,3}`
166with the `root` as username and `test{1,2,3}` for the password.
19096851 167
dbe868c0 168Instance configurations are in `config/test-{1,2,3}.yaml`.
19096851
C
169
170### Unit tests
171
a9ab599e 172Create a PostgreSQL user **with the same name as your username** in order to avoid using the *postgres* user.
6cca7360 173
a9ab599e 174Then, we can create the databases (if they don't already exist):
a2897212
C
175
176```
6d492e56
C
177$ sudo -u postgres createuser you_username --createdb --superuser
178$ createdb -O peertube peertube_test{1,2,3,4,5,6}
a2897212
C
179```
180
181Build the application and run the unit/integration tests:
19096851
C
182
183```
184$ npm run build
185$ npm test
186```
76434ec8
C
187
188If you just want to run 1 test:
189
190```
191$ npm run mocha -- --exit --require ts-node/register/type-check --bail server/tests/api/index.ts
192```
dbe868c0
C
193
194Instance configurations are in `config/test-{1,2,3,4,5,6}.yaml`.
a43e2182 195Note that only instance 2 has transcoding enabled.
e2266e4f
RK
196
197### Troubleshooting
198
199Please check out the issues and [list of common errors](https://docs.joinpeertube.org/lang/en/devdocs/troubleshooting.html).
200
201### Tutorials
202
203Please check out the related section in the [development documentation](https://docs.joinpeertube.org/lang/en/devdocs/index.html#tutorials). Contribute tutorials at [framagit.org/framasoft/peertube/documentation](https://framagit.org/framasoft/peertube/documentation).