diff options
Diffstat (limited to '.github/CONTRIBUTING.md')
-rw-r--r-- | .github/CONTRIBUTING.md | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index b5d7ede72..b3847b8d7 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md | |||
@@ -57,8 +57,8 @@ before you start working on them :). | |||
57 | 57 | ||
58 | First, you should use a server or PC with at least 4GB of RAM. Less RAM may lead to crashes. | 58 | First, you should use a server or PC with at least 4GB of RAM. Less RAM may lead to crashes. |
59 | 59 | ||
60 | Make sure that you have followed | 60 | Make sure that you have followed |
61 | [the steps](/support/doc/dependencies.md) | 61 | [the steps](/support/doc/dependencies.md) |
62 | to install the dependencies. | 62 | to install the dependencies. |
63 | 63 | ||
64 | Then clone the sources and install node modules: | 64 | Then clone the sources and install node modules: |
@@ -93,6 +93,12 @@ $ sudo -u postgres psql -c "CREATE EXTENSION unaccent;" peertube_dev | |||
93 | 93 | ||
94 | In dev mode, administrator username is **root** and password is **test**. | 94 | In dev mode, administrator username is **root** and password is **test**. |
95 | 95 | ||
96 | ### Online development | ||
97 | |||
98 | You 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 | |||
96 | ### Server side | 102 | ### Server side |
97 | 103 | ||
98 | You can find a documentation of the server code/architecture [here](/support/doc/development/server/code.md). | 104 | You can find a documentation of the server code/architecture [here](/support/doc/development/server/code.md). |
@@ -146,7 +152,7 @@ $ createdb -O peertube peertube_test{1,2,3} | |||
146 | Build the application and flush the old tests data: | 152 | Build the application and flush the old tests data: |
147 | 153 | ||
148 | ``` | 154 | ``` |
149 | $ npm run build | 155 | $ npm run build -- --light |
150 | $ npm run clean:server:test | 156 | $ npm run clean:server:test |
151 | ``` | 157 | ``` |
152 | 158 | ||