aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authoralexwl <alexey.a.kiryushin@gmail.com>2018-11-07 18:31:43 +0300
committeralexwl <alexey.a.kiryushin@gmail.com>2018-11-07 18:31:43 +0300
commita3b2321f7781c98c2863a54a339af73a6d6d0050 (patch)
tree699d0515971f8cdc68cc874d1042e2eec31a50fa /README.md
parent8f57cf6d73d591068b970729add2f1dec42b1819 (diff)
Embed static assets in haskell-code-server executable.
When there is no --js-path option, haskell-code-server serves embedded static assets.
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 249d3b0..67ccb72 100644
--- a/README.md
+++ b/README.md
@@ -119,13 +119,13 @@ haskell-code-server -h
Load the indexed package and start the server:
```bash
-haskell-code-server --package PATH --port 8080 --js-path haskell-code-explorer/javascript/release
+haskell-code-server --package PATH --port 8080
```
Load multiple indexed packages and start the server:
```bash
-haskell-code-server --package PATH1 --package PATH2 --package PATH3 --port 8080 --js-path haskell-code-explorer/javascript/release
+haskell-code-server --package PATH1 --package PATH2 --package PATH3 --port 8080
```
Open [http://localhost:8080](http://localhost:8080) in a browser to explore source code of the package.