aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/CONTRIBUTING.md
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-03-16 11:49:40 +0100
committerChocobozzz <me@florianbigard.com>2023-03-16 14:15:33 +0100
commit11c834bdba42f124a172b643b292e45f043b3be9 (patch)
tree447453d92eeab8cc94e4291b7d3bc59c02a8b142 /.github/CONTRIBUTING.md
parentdc9c9500bf5f0fd66906576ee3df4f1c49a1871d (diff)
downloadPeerTube-11c834bdba42f124a172b643b292e45f043b3be9.tar.gz
PeerTube-11c834bdba42f124a172b643b292e45f043b3be9.tar.zst
PeerTube-11c834bdba42f124a172b643b292e45f043b3be9.zip
Add server code new feature walkthrough
Diffstat (limited to '.github/CONTRIBUTING.md')
-rw-r--r--.github/CONTRIBUTING.md14
1 files changed, 8 insertions, 6 deletions
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index 4b62a7a30..56c3b65d1 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -138,8 +138,6 @@ You can get a complete PeerTube development setup with Gitpod, a free one-click
138 138
139### Server side 139### Server side
140 140
141You can find a documentation of the server code/architecture [here](https://docs.joinpeertube.org/contribute/architecture#server).
142
143To develop on the server-side: 141To develop on the server-side:
144 142
145``` 143```
@@ -150,11 +148,11 @@ Then, the server will listen on `localhost:9000`. When server source files
150change, these are automatically recompiled and the server will automatically 148change, these are automatically recompiled and the server will automatically
151restart. 149restart.
152 150
153### Client side 151More detailed documentation is available:
154 152 * [Server code/architecture](https://docs.joinpeertube.org/contribute/architecture#server)
155You can find a documentation of the client code/architecture 153 * [Server development (adding a new feature...)](/support/doc/development/server.md)
156[here](https://docs.joinpeertube.org/contribute/architecture#client).
157 154
155### Client side
158 156
159To develop on the client side: 157To develop on the client side:
160 158
@@ -166,6 +164,10 @@ The API will listen on `localhost:9000` and the frontend on `localhost:3000`.
166Client files are automatically compiled on change, and the web browser will 164Client files are automatically compiled on change, and the web browser will
167reload them automatically thanks to hot module replacement. 165reload them automatically thanks to hot module replacement.
168 166
167More detailed documentation is available:
168 * [Client code/architecture](https://docs.joinpeertube.org/contribute/architecture#client)
169
170
169### Client and server side 171### Client and server side
170 172
171The API will listen on `localhost:9000` and the frontend on `localhost:3000`. 173The API will listen on `localhost:9000` and the frontend on `localhost:3000`.