aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/CONTRIBUTING.md
diff options
context:
space:
mode:
Diffstat (limited to '.github/CONTRIBUTING.md')
-rw-r--r--.github/CONTRIBUTING.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index bbf06c87f..1672ebfa9 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -181,13 +181,13 @@ Then, we can create the databases (if they don't already exist):
181 181
182``` 182```
183$ sudo -u postgres createuser you_username --createdb --superuser 183$ sudo -u postgres createuser you_username --createdb --superuser
184$ createdb -O peertube peertube_test{1,2,3,4,5,6} 184$ npm run clean:server:test
185``` 185```
186 186
187Build the application and run the unit/integration tests: 187Build the application and run the unit/integration tests:
188 188
189``` 189```
190$ npm run build 190$ npm run build -- --light
191$ npm test 191$ npm test
192``` 192```
193 193