| Index: blimp/docs/running.md
|
| diff --git a/blimp/docs/running.md b/blimp/docs/running.md
|
| index 65d9fb76efc3dec4627a11f08c10b02103b2da50..76c5ff9e44ae5af6d8d33660b5e28ab71d7b5905 100644
|
| --- a/blimp/docs/running.md
|
| +++ b/blimp/docs/running.md
|
| @@ -152,15 +152,34 @@ Here are a few gotchas:
|
|
|
| ## Linux Client
|
|
|
| -The Linux client is used for development purpose while the Android client is
|
| -shipped. The Linux client is built as part of the `blimp` target.
|
| +The Linux client is useful for development purposes where the full Android UI is
|
| +not required.
|
| +
|
| +Build with the following commands:
|
| +```
|
| +gn gen out-linux/Client
|
| +ninja -C out-linux/Client blimp_shell
|
| +```
|
| +
|
| +
|
| To run it with local logging enabled, execute:
|
|
|
| ```bash
|
| -./out-linux/Debug/blimp_shell \
|
| +./out-linux/Client/blimp_shell \
|
| --user-data-dir=/tmp/blimpclient \
|
| --enable-logging=stderr \
|
| - --vmodule="*=1"
|
| + --vmodule="*=1" \
|
| + --engine-ip=127.0.0.1 \
|
| + --engine-port=25467 \
|
| + --engine-transport=tcp \
|
| + --blimp-client-token-path=/tmp/blimpengine-token
|
| +```
|
| +
|
| +**PS:** Create the `/tmp/blimpengine-token` file with any sequence of
|
| +characters. For example:
|
| +
|
| +```
|
| +echo "anything" > /tmp/blimpengine-token
|
| ```
|
|
|
| ## Running the engine
|
|
|