aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/doc/client
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/client
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/client')
-rw-r--r--support/doc/client/code.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/support/doc/client/code.md b/support/doc/client/code.md
index bae53ffe5..89320a1b4 100644
--- a/support/doc/client/code.md
+++ b/support/doc/client/code.md
@@ -53,9 +53,9 @@ Uses [TSLint](https://palantir.github.io/tslint/) for TypeScript linting and [An
53## Developing 53## Developing
54 54
55 * Install [the dependencies](https://github.com/Chocobozzz/PeerTube#dependencies) 55 * Install [the dependencies](https://github.com/Chocobozzz/PeerTube#dependencies)
56 * Run `npm install` at the root directory to install all the dependencies 56 * Run `yarn install` at the root directory to install all the dependencies
57 * Run PostgreSQL and create the database `peertube_dev`. 57 * Run PostgreSQL and create the database `peertube_dev`.
58 * Run `npm run dev:client` to compile the client, run the server and watch client files modifications. 58 * Run `npm run dev:client` to compile the client, run the server, watch client files modifications and reload modules on the fly (you don't need to refresh manually the web browser). The API listen on `localhost:9000` and the client on `localhost:3000`.
59 59
60In a Angular application, we create components that we put together. Each component is defined by an HTML structure, a TypeScript file and optionnaly a SASS file. 60In a Angular application, we create components that we put together. Each component is defined by an HTML structure, a TypeScript file and optionnaly a SASS file.
61If you are not familiar with Angular I recommend you to read the [quickstart guide](https://angular.io/docs/ts/latest/quickstart.html). 61If you are not familiar with Angular I recommend you to read the [quickstart guide](https://angular.io/docs/ts/latest/quickstart.html).