diff options
| author | Jeroen <jeroenpardon@users.noreply.github.com> | 2021-08-04 02:13:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-04 02:13:46 +0200 |
| commit | c93d1e1621a5479f77a571ed5564af10aa85b9bc (patch) | |
| tree | 4f069c5b5fc8b58d0bb41b37ceb4bbdd15433e9d /README.md | |
| parent | 65e44f029a5ba51320662cd8295b3565ce250ba0 (diff) | |
| parent | 93b20aa5df56bcb6d983d3880bf6f4601a54bb7b (diff) | |
Merge pull request #18 from kimpenhaus/feature/optional-link-target
optional link 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" } |