dashy/README.md

174 lines
9.7 KiB
Markdown
Raw Normal View History

2019-07-19 14:07:26 +00:00
2021-04-18 14:07:13 +00:00
<h1 align="center">Dashy</h1>
<p align="center"><i>Dashy helps you organise your self-hosted services, by making them all accessible from a single place</i></p>
2021-04-18 14:07:13 +00:00
2021-05-02 12:52:30 +00:00
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/3be23a4a3a8a4689bd47745b201ecb74)](https://www.codacy.com/gh/Lissy93/dashy/dashboard)
![GitHub issues](https://img.shields.io/github/issues/lissy93/dashy?style=flat-square)
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/lissy93/dashy?style=flat-square)
![Lines of code](https://img.shields.io/tokei/lines/github/lissy93/dashy?style=flat-square)
2021-04-18 14:07:13 +00:00
<p align="center">
<img width="800" src="https://i.ibb.co/L8YbNNc/dashy-demo2.gif" alt="Demo">
</p>
2019-10-12 23:33:11 +00:00
2021-04-17 20:11:10 +00:00
## Features 🌈
- Instant search and full keyboard shortcuts
2021-04-20 17:26:14 +00:00
- Multiple color themes, layout options and item sizes all configurable through the browser
- Preferences stored in local storage and applied on load
- Quickly preview a website, by holding down the Alt key while clicking, to open it in a resizable pop-up modal
2021-04-17 20:11:10 +00:00
- Additional info for each item visible on hover (including opening method icon, description as a tooltip and domain info)
- Small bundle size and a fully responsive UI makes the app easy to use on any device
- Many options for icons, including full Font-Awesome support and the ability to auto-fetch icon from URLs favicon
- Plus lots more...
2019-10-12 23:33:11 +00:00
---
2021-04-17 20:11:10 +00:00
## Running the App 🏃‍♂️
2021-04-17 18:42:48 +00:00
### Deploying 🚀
- Get Code: `git clone git@github.com:Lissy93/dashy.git` and `cd dashy`
- Configuration: Fill in you're settings in `./public/conf.yml`
- Install dependencies: `yarn`
- Build: `yarn build`
- Run: `yarn start`
### Deploying with Docker 🐳
- Get Code: `git clone git@github.com:Lissy93/dashy.git` and `cd dashy`
- Configuration: Fill in you're settings in `./public/conf.yml`
- Build: `docker build -t lissy93/dashy .`
- Start: `docker run -it -p 8080:80 --rm --name my-dashboard lissy93/dashy`
### Developing 🧱
- Get Code: `git clone git@github.com:Lissy93/dashy.git` and `cd dashy`
- Install dependencies: `yarn`
- Start dev server: `yarn dev`
2019-10-12 23:33:11 +00:00
2021-04-17 18:42:48 +00:00
---
2019-10-12 23:33:11 +00:00
2021-04-17 18:42:48 +00:00
## Configuring 🔧
2019-10-12 23:33:11 +00:00
2021-04-17 20:11:10 +00:00
### Config Locations 📍
2021-04-17 18:42:48 +00:00
2021-04-17 20:11:10 +00:00
Configuration files are located in [`./public/`](https://github.com/Lissy93/dashy/tree/master/public).
2021-04-17 18:42:48 +00:00
- `./public/conf.yml` - This is the main site configuration file, and is required for the app to work
2021-04-20 17:26:14 +00:00
- `./public/item-icons` - If you're using your own icons, you can choose to store them locally for better load time. You can also use sub-folders to keep things organized
2021-04-17 18:42:48 +00:00
Also within `./public` you'll find normal website assets, including `favicon.ico`, `manifest.json`, `robots.txt` and `web-icons/*`. There's no need to modify these, but you can do so if you wish.
2021-04-17 20:11:10 +00:00
### The Conf File 📄
2019-10-13 00:00:31 +00:00
2021-04-17 20:11:10 +00:00
All app config is specified in [`/public/conf.yml`](https://github.com/Lissy93/dashy/blob/master/public/conf.yml) (in [YAML Format](https://yaml.org/)).
All fields are optional, unless otherwise stated.
2021-04-17 19:19:29 +00:00
2021-05-02 12:52:30 +00:00
**Examples**: [Example Config 1](https://listed.to/p/HA5Hq5PHFO) ┆ [Example Config 2](https://listed.to/p/a1gvTPGTEz) ┆ [Example Config 2](https://listed.to/p/a1gvTPGTEz)
2021-04-17 19:19:29 +00:00
**`pageInfo`**
- `title` - String: The page title and heading
- `description` - String: Short description visible under the heading
2021-04-20 16:26:36 +00:00
- `navLinks` - Array: Links to display in the nav bar, an array or objects containing a title and link:
- `title` - String: Text to display
- `path` - String: URL or relative link
2021-04-17 19:19:29 +00:00
2021-04-17 20:11:10 +00:00
**`appConfig`** _(optional)_
- `enableFontAwesome` - Boolean: Where `true` is enabled, if left blank font-awesome will be enabled only if required by 1 or more icons
- `fontAwesomeKey` - String: If you have a font-awesome key, then you can use it here and make use of premium icons. It is a 10-digit alpha-numeric string from you're FA kit URL (e.g. `13014ae648`)
2021-04-17 19:19:29 +00:00
- `theme`- String: The default theme for first load
2021-04-20 16:26:36 +00:00
- `cssThemes` - String[]: An array of custom theme names which can be used in the theme switcher dropdown - _See **theming** below_
2021-04-17 19:19:29 +00:00
- `externalStyleSheet` - String or String[] - Either a URL to an external stylesheet or an array or URLs, which can be applied as themes within the UI
2021-04-20 16:26:36 +00:00
**`sections`** - Section[]: (required) An array of sections - _See **`section`** below_
2021-04-17 19:19:29 +00:00
**`section`**
- `name` - String: (required) The title of that section
2021-04-20 16:26:36 +00:00
- `items` - Item[]: (required) An array of items - _See **`item`** below_
2021-04-17 19:19:29 +00:00
- `displayData`: An object with the following fields (all optional)
2021-04-20 16:26:36 +00:00
- `collapsed` - Boolean: If true, the section will be collapsed initially (defaults to `false`)
2021-04-17 19:19:29 +00:00
- `rows` - Int: Number of rows the section should span vertically, e.g. 2 (defaults to `1`)
- `cols` - Int: Number of columns the section should span horizontally, e.g. 2 (defaults to `1`)
2021-04-20 16:26:36 +00:00
- `color` - String: A custom accent color for the section, as a hex code or HTML color (e.g. `#fff`)
2021-04-17 20:11:10 +00:00
- `customStyles` - String: Custom CSS properties that should be applied to that section, e.g. `border: 2px dashed #ff0000;`
2021-04-18 12:57:20 +00:00
- `itemSize` - String: Specify the size for items within this group, either `small`, `medium` or `large`
2021-04-17 19:19:29 +00:00
**`item`**
- `title` - String: The text to display on the item
- `description` - String: Additional info which is shown in the tooltip on hover
2021-04-17 20:11:10 +00:00
- `icon` - String: Icons can be either a local image, remote image, or a Font Awesome icon, *see below for more info*
- `url` - String: The full path to be opened on click (e.g. `https://example.com`)
2021-04-17 19:19:29 +00:00
- `target` - String: The method in which the item will be opened, either `newtab`, `sametab` or `iframe`
2021-04-20 16:26:36 +00:00
- `color` - String: A custom color the the item, as a hex code or HTML color (e.g. `#fff`)
- `backgroundColor` - String: A custom fill color for the the item's background, also as a hex code
2021-04-17 20:11:10 +00:00
**`icon`** Examples:
- To use use a remote image, just use it's full URL, e.g. `https://i.ibb.co/710B3Yc/space-invader-x256.png`
2021-04-20 17:26:14 +00:00
- To use a local image, save it in `./public/item-icons/image.png` or `./public/my-category/item-icons/image.png` and specify the image as `image.png` or `my-category/image.png`. For best results, use either png or svg formats.
2021-04-18 12:57:20 +00:00
- To automatically fetch an icon from items URL, just set icon field to `favicon`
2021-04-17 20:11:10 +00:00
- To use a Font-Awesome icon, specify the category (`fas`, `fab`, `far`, `fal` or`fad`), followed by a space then `fa-` and the icon name. For example: `fas fa-rocket`, `fab fa-monero`, `fal fa-duck` or `fad fa-glass-whiskey-rocks`. Note that light (`fal`) and duotone (`fad`) icons are only available with Font Awesome Pro, to use this, you need to set you're kit ID under `appConfig.fontAwesomeKey`.
2019-10-12 23:33:11 +00:00
2021-04-18 12:57:20 +00:00
2021-04-20 17:26:14 +00:00
### Theming 🎨
2021-04-20 16:26:36 +00:00
2021-04-20 17:26:14 +00:00
The app comes with a number of built-in themes, but it's also easy to write you're own. Once you've done so you can select you're theme fro the dropdown menu, and like other visual settings, you're chosen theme is saved in local storage, so will load automatically when you next visit the page.
2021-04-20 16:26:36 +00:00
2021-04-20 17:26:14 +00:00
The theme switching is done by simply changing the `data-theme` attribute on the root DOM element, which can then be targeted by CSS. First off, in order for the theme to show up in the theme switcher, it needs to be added to the config file, under `appConfig.cssThemes`, either as a string, or an array of strings for multiple themes. For example:
2021-04-20 16:26:36 +00:00
```yaml
appConfig:
cssThemes: ['tiger', 'another-theme']
```
2021-04-20 17:26:14 +00:00
You can now create a block to target you're theme with `html[data-theme='my-theme']{}` and set some styles. The easiest method is by setting CSS variables, but you can also directly override elements by their selector. As an example, see the [built-in CSS themes](https://github.com/Lissy93/dashy/blob/master/src/styles/color-themes.scss).
```css
html[data-theme='tiger'] {
--primary: #f58233;
--item-group-background: #0b1021;
}
```
Alternatively, you can load an external stylesheet. Pass either a URL to a .css file, or an array or URLs to `appConfig.externalStyleSheet`. The stylesheet will then be pre-loaded, and can then be enabled from the UI using the theme switcher.
2021-04-20 16:26:36 +00:00
```yaml
appConfig:
externalStyleSheet: 'https://example.com/my-stylesheet.css'
```
2021-03-09 16:24:52 +00:00
---
2019-10-12 23:33:11 +00:00
2021-04-20 17:26:14 +00:00
## Notes
2021-05-02 12:52:30 +00:00
### Roadmap 🛣
- [ ] Allow users to import / export configuration through the UI
- [ ] Improve deployment process (with a one-liner Docker run command)
- [ ] Add support for custom widgets
- [ ] Convert JavaScript to TypeScript
2021-04-20 17:26:14 +00:00
### Credits 🏆
The app makes use of the following components, kudos to their respective authors
- [`vue-select`](https://github.com/sagalbot/vue-select) - Dropdown component by @sagalbot
- [`vue-js-modal`](https://github.com/euvl/vue-js-modal) - Modal component by @euvl
- [`v-tooltip`](https://github.com/Akryum/v-tooltip) - Tooltip component by @Akryum
2021-05-02 12:52:30 +00:00
And the app itself is built with [Vue.js](https://github.com/vuejs/vue) ![vue-logo](https://i.ibb.co/xqKW6h5/vue-logo.png)
2021-04-20 17:26:14 +00:00
### License 📜
2019-10-12 23:33:11 +00:00
2019-07-19 14:07:26 +00:00
```
2021-03-09 16:24:52 +00:00
Copyright © 2021 Alicia Sykes <https://aliciasykes.com>
2019-07-19 14:07:26 +00:00
2021-03-09 16:25:58 +00:00
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the “Software”), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWAREOR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2021-03-09 16:24:52 +00:00
```