diff options
Diffstat (limited to '.github/CONTRIBUTING.md')
-rw-r--r-- | .github/CONTRIBUTING.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index dec6a5cd0..2b90d94a2 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md | |||
@@ -35,7 +35,7 @@ to install the dependencies. | |||
35 | 35 | ||
36 | Then clone the sources and install node modules: | 36 | Then clone the sources and install node modules: |
37 | 37 | ||
38 | ```bash | 38 | ``` |
39 | $ git clone -b master https://github.com/Chocobozzz/PeerTube | 39 | $ git clone -b master https://github.com/Chocobozzz/PeerTube |
40 | $ cd PeerTube | 40 | $ cd PeerTube |
41 | $ yarn install --pure-lockfile | 41 | $ yarn install --pure-lockfile |
@@ -46,7 +46,7 @@ Then, create a postgres database and user with the values set in the | |||
46 | there, the following commands would create a new database called `peertube_dev` | 46 | there, the following commands would create a new database called `peertube_dev` |
47 | and a postgres user called `peertube` with password `peertube`: | 47 | and a postgres user called `peertube` with password `peertube`: |
48 | 48 | ||
49 | ```bash | 49 | ``` |
50 | # sudo -u postgres createuser -P peertube | 50 | # sudo -u postgres createuser -P peertube |
51 | Enter password for new role: peertube | 51 | Enter password for new role: peertube |
52 | # sudo -u postgres createdb -O peertube peertube_dev | 52 | # sudo -u postgres createdb -O peertube peertube_dev |
@@ -60,7 +60,7 @@ You can find a documentation of the server code/architecture [here](/support/doc | |||
60 | 60 | ||
61 | To develop on the server-side: | 61 | To develop on the server-side: |
62 | 62 | ||
63 | ```bash | 63 | ``` |
64 | $ npm run dev:server | 64 | $ npm run dev:server |
65 | ``` | 65 | ``` |
66 | 66 | ||
@@ -76,7 +76,7 @@ You can find a documentation of the server code/architecture | |||
76 | 76 | ||
77 | To develop on the client side: | 77 | To develop on the client side: |
78 | 78 | ||
79 | ```bash | 79 | ``` |
80 | $ npm run dev:client | 80 | $ npm run dev:client |
81 | ``` | 81 | ``` |
82 | 82 | ||
@@ -88,7 +88,7 @@ reload them automatically thanks to hot module replacement. | |||
88 | 88 | ||
89 | This will run 3 nodes: | 89 | This will run 3 nodes: |
90 | 90 | ||
91 | ```bash | 91 | ``` |
92 | $ npm run clean:server:test | 92 | $ npm run clean:server:test |
93 | $ npm run play | 93 | $ npm run play |
94 | ``` | 94 | ``` |