]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - .github/CONTRIBUTING.md
Add 'Improve the website' section to CONTRIBUTING (#1366)
[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
C
4
5**Quick Links:**
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)
7a7edb72 12
6a1787c1
C
13## Translate
14
15You can help us to translate the PeerTube interface to many languages! See [the documentation](/support/doc/translation.md) to know how.
16
17
7a7edb72
C
18## Give your feedback
19
e755a63a
BB
20You don't need to know how to code to start contributing to PeerTube! Other
21contributions are very valuable too, among which: you can test the software and
22report bugs, you can give feedback on potential bugs, features that you are
63bfad7e 23interested in, user interface, design, decentralized architecture...
7a7edb72
C
24
25
63bfad7e 26## Write documentation
7a7edb72 27
63bfad7e 28You can help to write the documentation of the REST API, code, architecture,
d59a8da8
C
29demonstrations.
30
31For the REST API you can see the documentation in [/support/doc/api](/support/doc/api) directory.
32Then, 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.
33
34Some hints:
35 * Routes are defined in [/server/controllers/](/server/controllers/) directory
36 * Parameters validators are defined in [/server/middlewares/validators](/server/middlewares/validators) directory
37 * Models sent/received by the controllers are defined in [/shared/models](/shared/models) directory
38
7a7edb72 39
0e62b72b
TK
40## Improve the website
41
42PeerTube'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.
43
44You can help us improve it too!
45
46It 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
47
48
63bfad7e 49## Develop
7a7edb72 50
7193ad10 51Don't hesitate to talk about features you want to develop by creating/commenting an issue
e755a63a 52before you start working on them :).
7a7edb72 53
63bfad7e 54### Prerequisites
7a7edb72 55
a43e2182 56First, you should use a server or PC with at least 4GB of RAM. Less RAM may lead to crashes.
57
58Make sure that you have followed
63bfad7e
C
59[the steps](/support/doc/dependencies.md)
60to install the dependencies.
e755a63a 61
63bfad7e 62Then clone the sources and install node modules:
e755a63a 63
afe81767 64```
c263f3b4 65$ git clone https://github.com/Chocobozzz/PeerTube
63bfad7e
C
66$ cd PeerTube
67$ yarn install --pure-lockfile
68```
e755a63a 69
dd07afa5
FA
70Note that development is done on the `develop` branch. If you want to hack on
71Peertube, you should switch to that branch. Also note that you have to repeat
72the `yarn install --pure-lockfile` command.
73
e755a63a
BB
74Then, create a postgres database and user with the values set in the
75`config/default.yaml` file. For instance, if you do not change the values
76there, the following commands would create a new database called `peertube_dev`
77and a postgres user called `peertube` with password `peertube`:
78
afe81767 79```
63bfad7e
C
80# sudo -u postgres createuser -P peertube
81Enter password for new role: peertube
82# sudo -u postgres createdb -O peertube peertube_dev
e755a63a
BB
83```
84
dd07afa5
FA
85Then enable extensions PeerTube needs:
86
87```
88$ sudo -u postgres psql -c "CREATE EXTENSION pg_trgm;" peertube_dev
89$ sudo -u postgres psql -c "CREATE EXTENSION unaccent;" peertube_dev
90```
91
63bfad7e
C
92In dev mode, administrator username is **root** and password is **test**.
93
e755a63a
BB
94### Server side
95
63bfad7e
C
96You can find a documentation of the server code/architecture [here](/support/doc/development/server/code.md).
97
e755a63a
BB
98To develop on the server-side:
99
afe81767 100```
63bfad7e 101$ npm run dev:server
e755a63a
BB
102```
103
104Then, the server will listen on `localhost:9000`. When server source files
105change, these are automatically recompiled and the server will automatically
19096851 106restart.
e755a63a
BB
107
108### Client side
109
63bfad7e
C
110You can find a documentation of the server code/architecture
111[here](/support/doc/development/client/code.md).
112
113
e755a63a
BB
114To develop on the client side:
115
afe81767 116```
63bfad7e 117$ npm run dev:client
e755a63a
BB
118```
119
120The API will listen on `localhost:9000` and the frontend on `localhost:3000`.
121Client files are automatically compiled on change, and the web browser will
122reload them automatically thanks to hot module replacement.
7a7edb72 123
19096851
C
124### Client and server side
125
126The API will listen on `localhost:9000` and the frontend on `localhost:3000`.
127File changes are automatically recompiled, injected in the web browser (no need to refresh manually)
128and the web server is automatically restarted.
129
130```
131$ npm run dev
132```
133
80c7336a
CB
134Depending on your OS, you may face the following error :
135```
136$ [nodemon] Internal watch failed: ENOSPC: no space left on device, watch '/PeerTube/dist'
137```
138
139This is due to your system's limit on the number of files you can monitor for live-checking changes. For example, Ubuntu uses inotify and this limit is set to 8192. Then you need to change this limit :
140```
141echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
142```
143
144See more information here : https://github.com/guard/listen/wiki/Increasing-the-amount-of-inotify-watchers
145
e730aef7
AB
146### Configurations for VPS
147
148If you want to develop using a Virtual Private Server, you will need to configure the url for the API and the hostname. First, you need to edit the [client/src/environments/environment.hmr.ts](client/src/environments/environment.hmr.ts) file by replacing the `localhost` in the `apiUrl` field with the address of your VPS. Thus, the [Hot Module Replacement](https://webpack.js.org/concepts/hot-module-replacement/) from Webpack will be set up for developping with live-reload.
149
150Next, you will need to edit the [config/default.yaml](config/default.yaml) file. Just replace the `localhost` with your VPS address in the following `hostname` fields :
151```
152listen:
153 hostname: 'my-vps-address.net'
154 port: 9000
155
156webserver:
157 https: false
158 hostname: 'my-vps-address.net'
159 port: 9000
160```
161
162Then, you just need to listen to `https://my-vps-address.net:3000/` in your web browser.
163
19096851 164### Federation
35a12fee 165
a9ab599e
C
166Create a PostgreSQL user **with the same name as your username** in order to avoid using the *postgres* user.
167Then, we can create the databases (if they don't already exist):
a2897212
C
168
169```
a9ab599e
C
170$ sudo -u postgres createuser you_username --createdb
171$ createdb -O peertube peertube_test{1,2,3}
a2897212
C
172```
173
174Build the application and flush the old tests data:
7a7edb72 175
afe81767 176```
19096851 177$ npm run build
63bfad7e 178$ npm run clean:server:test
a2897212
C
179```
180
181This will run 3 nodes:
182
183```
63bfad7e
C
184$ npm run play
185```
7a7edb72 186
63bfad7e
C
187Then you will get access to the three nodes at `http://localhost:900{1,2,3}`
188with the `root` as username and `test{1,2,3}` for the password.
19096851 189
dbe868c0 190Instance configurations are in `config/test-{1,2,3}.yaml`.
19096851
C
191
192### Unit tests
193
a9ab599e 194Create a PostgreSQL user **with the same name as your username** in order to avoid using the *postgres* user.
6cca7360 195
a9ab599e 196Then, we can create the databases (if they don't already exist):
a2897212
C
197
198```
6d492e56
C
199$ sudo -u postgres createuser you_username --createdb --superuser
200$ createdb -O peertube peertube_test{1,2,3,4,5,6}
a2897212
C
201```
202
203Build the application and run the unit/integration tests:
19096851
C
204
205```
206$ npm run build
207$ npm test
208```
76434ec8
C
209
210If you just want to run 1 test:
211
212```
213$ npm run mocha -- --exit --require ts-node/register/type-check --bail server/tests/api/index.ts
214```
dbe868c0
C
215
216Instance configurations are in `config/test-{1,2,3,4,5,6}.yaml`.
a43e2182 217Note that only instance 2 has transcoding enabled.