Merge branch 'master' into openhab
This commit is contained in:
commit
92b54d18a9
6 changed files with 34 additions and 5 deletions
|
@ -34,8 +34,10 @@ class Item extends Model
|
|||
'Pihole' => \App\SupportedApps\Pihole::class,
|
||||
'Plex' => \App\SupportedApps\Plex::class,
|
||||
'Plexpy' => \App\SupportedApps\Plexpy::class,
|
||||
'Plexrequests' => \App\SupportedApps\Plexrequests::class,
|
||||
'Portainer' => \App\SupportedApps\Portainer::class,
|
||||
'Sabnzbd' => \App\SupportedApps\Sabnzbd::class,
|
||||
'Traefik' => \App\SupportedApps\Traefik::class,
|
||||
'UniFi' => \App\SupportedApps\Unifi::class,
|
||||
'pFsense' => \App\SupportedApps\Pfsense::class,
|
||||
];
|
||||
|
|
12
app/SupportedApps/Plexrequests.php
Normal file
12
app/SupportedApps/Plexrequests.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php namespace App\SupportedApps;
|
||||
|
||||
class Plexrequests implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#845c2c';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/plexrequests.png';
|
||||
}
|
||||
}
|
12
app/SupportedApps/Traefik.php
Normal file
12
app/SupportedApps/Traefik.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php namespace App\SupportedApps;
|
||||
|
||||
class Traefik implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#427d8c';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/traefik.png';
|
||||
}
|
||||
}
|
13
readme.md
13
readme.md
|
@ -1,9 +1,9 @@
|
|||
![alt text](https://i.imgur.com/VYMXaH7.png)
|
||||
![alt text](https://i.imgur.com/iuV8w3y.png)
|
||||
|
||||
## About
|
||||
Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.
|
||||
As the name suggests Heimdall Application Dashboard is a dashboard for all your web applications. It doesn't need to be limited to applications though, you can add links to anything you like.
|
||||
|
||||
Simplicity is the key to Heimdall.
|
||||
Heimdall is an elegant solution to organise all your web applications. It’s dedicated to this purpose so you won’t lose your links in a sea of bookmarks.
|
||||
|
||||
Why not use it as your browser start page? It even has the ability to include a search bar using either Google, Bing or DuckDuckGo.
|
||||
|
||||
|
@ -13,13 +13,13 @@ Why not use it as your browser start page? It even has the ability to include a
|
|||
If you want to see a quick video of it in use, go to https://youtu.be/GXnnMAxPzMc
|
||||
|
||||
## Supported applications
|
||||
You can use the app to link to any site or application, but "Supported" apps will auto fill in the icon for the app and supply a default color for the tile. In addition *enhanced apps allow you provide details to an apps API, allowing you to view live stats directly on the dashboad. For example, the NZBGet and Sabnzbd Enhanced apps will display the queue size and download speed while something is downloading.
|
||||
You can use the app to link to any site or application, but Foundation apps will auto fill in the icon for the app and supply a default color for the tile. In addition Enhanced apps allow you provide details to an apps API, allowing you to view live stats directly on the dashboad. For example, the NZBGet and Sabnzbd Enhanced apps will display the queue size and download speed while something is downloading.
|
||||
|
||||
**Enhanced**
|
||||
- NZBGet
|
||||
- Sabnzbd
|
||||
|
||||
**Supported**
|
||||
**Foundation**
|
||||
- Duplicati
|
||||
- Emby
|
||||
- NZBGet
|
||||
|
@ -28,8 +28,10 @@ You can use the app to link to any site or application, but "Supported" apps wil
|
|||
- Pihole
|
||||
- Plex
|
||||
- Plexpy
|
||||
- Plexrequests
|
||||
- Portainer
|
||||
- Sabnzbd
|
||||
- Traefik
|
||||
- UniFi
|
||||
- pFsense
|
||||
|
||||
|
@ -53,6 +55,7 @@ Currently added languages are
|
|||
- French
|
||||
- Swedish
|
||||
- Spanish
|
||||
- Turkish
|
||||
|
||||
## Web Server Configuration
|
||||
|
||||
|
|
BIN
storage/app/public/supportedapps/plexrequests.png
Normal file
BIN
storage/app/public/supportedapps/plexrequests.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.9 KiB |
BIN
storage/app/public/supportedapps/traefik.png
Normal file
BIN
storage/app/public/supportedapps/traefik.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 41 KiB |
Loading…
Reference in a new issue