Skip to content

Commit

Permalink
fix: update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jacovinus committed Jan 22, 2024
1 parent d401c35 commit 99764ff
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 8 deletions.
10 changes: 5 additions & 5 deletions BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
##### install:

```bash
~/$ npm install
~/$ pnpm install
```

##### serve (development mode):

```bash
~/$ npm start
~/$ pnpm dev
```

will serve the UI on ``http://localhost:8080``
Expand All @@ -24,7 +24,7 @@ will serve the UI on ``http://localhost:8080``


```bash
~/$ npm run build
~/$ pnpm run build
```
#### *Serve (dist):*

Expand All @@ -37,7 +37,7 @@ will serve the UI on ``http://localhost:8080``
2 - Serve

```bash
~/$ serve -s build
~/$ serve -s ./packages/main/dist
```

will serve by default the UI on ``http://localhost:3000``
Expand All @@ -54,5 +54,5 @@ will serve by default the UI on ``http://localhost:3000``
- ``API_URL`` default: ``http://localhost:3100``

```bash
~/$ HOST=localhost PORT=8080 API_URL=http://qryn-host:3100 npm start
~/$ HOST=localhost PORT=8080 API_URL=http://qryn-host:3100 pnpm dev
```
33 changes: 30 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Install Serve (npm serve)
```bash
sudo npm i -g serve

serve -s build
serve -s ./packages/main/dist
```
---

Expand All @@ -88,16 +88,43 @@ _Use the [public client](https://view.cloki.org) _(no data goes through the serv
#### Environment Variables:

- ``HOST`` default: `` 0.0.0.0``

- ``PORT`` default: ``8080``

- ``API_URL`` default: ``http://localhost:3100``


##### Example
```bash
~/$ HOST=localhost PORT=8080 API_URL=http://qryn-host:3100 npm start
~/$ HOST=localhost PORT=8080 API_URL=http://qryn-host:3100 pnpm dev
```
------------

##### Available Routes

- qryn-view works under a hash router to make it flexible for static deployments and simpler to run over a single route.

Current available routes:

`/#/datasources` : Datasources settings


`/#/search` : Main search view


`/#/users` : users reserved route


`/#/plugins` : custom plugins

------------

##### URL Parameters
_cLoki-view can be controlled through URL parameters__


_qryn-view can be controlled globally through URL parameters__



| param | description | default |
|-------|-------------|---------|
Expand Down

0 comments on commit 99764ff

Please sign in to comment.