diff options
| author | Marcus Kimpenhaus <marcus.kimpenhaus@enpower.de> | 2021-07-12 09:14:21 +0200 |
|---|---|---|
| committer | Marcus Kimpenhaus <marcus.kimpenhaus@enpower.de> | 2021-07-12 09:14:21 +0200 |
| commit | 93b20aa5df56bcb6d983d3880bf6f4601a54bb7b (patch) | |
| tree | f600c4ae497a0af84e6400859b7015759ab1e292 /README.md | |
| parent | c53f3adff5632424a2e7217a8683d5137c4fca94 (diff) | |
updated readme.md to reflect changes on target attribute
Diffstat (limited to 'README.md')
| -rwxr-xr-x | README.md | 29 |
1 files changed, 15 insertions, 14 deletions
@@ -9,13 +9,13 @@ #### Prerequisites: - Docker: [Linux](https://docs.docker.com/install/linux/docker-ce/debian/), [Mac](https://hub.docker.com/editions/community/docker-ce-desktop-mac), [Windows](https://hub.docker.com/editions/community/docker-ce-desktop-windows) - - [Docker-compose](https://docs.docker.com/compose/install/) + - [Docker-compose](https://docs.docker.com/compose/install/) #### Install: - `git clone` this repository - Build and bring up with `docker-compose up -d` - - The page should be available at `http://localhost:4000` + - The page should be available at `http://localhost:4000` To run at a different port open edit docker-compose.yml: @@ -33,7 +33,7 @@ Add your apps by editing apps.json: { "apps" : [ {"name":"Name of app 1","url":"sub1.example.com","icon":"icon-name"}, - {"name":"Name of app 2","url":"sub2.example.com","icon":"icon-name"} + {"name":"Name of app 2","url":"sub2.example.com","icon":"icon-name","target":"optionals"} ] } @@ -47,29 +47,30 @@ Please note: Add your bookmarks by editing links.json: ``` -{ - "bookmarks":[ - { +{ + "bookmarks":[ + { "category":"Category1", - "links":[ - { + "links":[ + { "name":"Link1", "url":"http://example.com" }, - { + { "name":"Link2", - "url":"http://example.com" + "url":"http://example.com", + "target":"optionals" } ] }, - { + { "category":"Category2", - "links":[ - { + "links":[ + { "name":"Link1", "url":"http://example.com" }, - { + { "name":"Link2", "url":"http://example.com" } |