aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/doc/server
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-06-14 21:37:49 +0200
committerChocobozzz <florian.bigard@gmail.com>2017-06-14 21:37:49 +0200
commited5f91633d96436408c763bb96d2cc463cb7dc00 (patch)
treedf4e0b67d3ccc50a4066afa433298022aa22a07c /support/doc/server
parentc3d19a49070aedb0e9accedf46465196b677406e (diff)
downloadPeerTube-ed5f91633d96436408c763bb96d2cc463cb7dc00.tar.gz
PeerTube-ed5f91633d96436408c763bb96d2cc463cb7dc00.tar.zst
PeerTube-ed5f91633d96436408c763bb96d2cc463cb7dc00.zip
Update readme/doc with new client port for dev
Diffstat (limited to 'support/doc/server')
-rw-r--r--support/doc/server/code.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/support/doc/server/code.md b/support/doc/server/code.md
index 13e592335..b941304ce 100644
--- a/support/doc/server/code.md
+++ b/support/doc/server/code.md
@@ -40,9 +40,9 @@ Uses [JavaScript Standard Style](http://standardjs.com/).
40## Developing 40## Developing
41 41
42 * Install [the dependencies](https://github.com/Chocobozzz/PeerTube#dependencies) 42 * Install [the dependencies](https://github.com/Chocobozzz/PeerTube#dependencies)
43 * Run `npm install` at the root directory to install all the dependencies 43 * Run `yarn install` at the root directory to install all the dependencies
44 * Run PostgreSQL and create the database `peertube_dev`. 44 * Run PostgreSQL and create the database `peertube_dev`.
45 * Run `npm run dev:server` to compile the client, run the server and watch server files modifications. 45 * Run `npm run dev:server` to run the server, watch server files modifications and restart it automatically. The server (API + client) listen on `localhost:9000`.
46 46
47The `NODE_ENV=test` is set to speed up communications between pods (see [constants.ts](https://github.com/Chocobozzz/PeerTube/blob/master/server/initializers/constants.ts)). 47The `NODE_ENV=test` is set to speed up communications between pods (see [constants.ts](https://github.com/Chocobozzz/PeerTube/blob/master/server/initializers/constants.ts)).
48 48