You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
KodeStar 4fc2bbd1af fixes for nzbget 7 years ago
app fixes for nzbget 7 years ago
bootstrap First commit 7 years ago
config Update files for next version 7 years ago
database translations 7 years ago
public fixes for nzbget 7 years ago
resources fixes for nzbget 7 years ago
routes first working(ish) app! 7 years ago
storage changed gitignore 7 years ago
tests First commit 7 years ago
vendor fixes for nzbget 7 years ago
.env added settings 7 years ago
.env.example First commit 7 years ago
.gitattributes First commit 7 years ago
.gitignore ignore mix manifest 7 years ago
CHANGELOG.md updated dependencies + working api connection 7 years ago
LICENSE Create LICENSE 7 years ago
_config.yml Set theme jekyll-theme-tactile 7 years ago
artisan First commit 7 years ago
composer.json fixes for nzbget 7 years ago
composer.lock updated dependencies + working api connection 7 years ago
package-lock.json fixes 7 years ago
package.json item sass 7 years ago
phpunit.xml First commit 7 years ago
readme.md possible fix for slider 7 years ago
server.php First commit 7 years ago
webpack.mix.js added order saving, dragging and pinning 7 years ago

readme.md

alt text

About

Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.

Simplicity is the key to Heimdall.

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.

Video

If you want to see a quick video of it in use, go to https://drive.google.com/file/d/1cijXgmjem_q2OfKMp36qVuXRiyOzvhWC/view

Installing

Apart from the Laravel dependencies, namely PHP >= 7.0.0, OpenSSL PHP Extension, PDO PHP Extension, Mbstring PHP Extension, Tokenizer PHP Extension and XML PHP Extension, the only other thing Heimdall needs is sqlite support.

Installation is as simple as cloning the repository somewhere, or downloading and extracting the zip/tar and pointing your httpd document root to it. For simple testing you could just go to the folder and type php artisan serve

Languages

The app has been translated into several languages, however the quality of the translations could do with work, if you would like to improve them or help with other translations they are stored in /resources/lang/

To create a new one, create a new folder with the ISO 3166-1 alpha-2 code as the name, copy app.php from /resources/lang/en/app.php into your new folder and replace the english strings.

When you are finished create a pull request.

Currently added languages are

  • English
  • German
  • Finnish
  • French
  • Swedish
  • Spanish

Web Server Configuration

Apache

A .htaccess file ships with the app, however, if it does not work with your Apache installation, try this alternative:

Options +FollowSymLinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

Nginx

If you are using Nginx, the following directive in your site configuration will direct all requests to the index.php front controller:

location / {
    try_files $uri $uri/ /index.php?$query_string;
}

Someone was using the same nginx setup to both run this and reverse proxy Plex, Plex is served from /web so their location was interferring with the /webfonts.

Therefore, if your fonts aren't showing because you have a location for /web add the following

location /webfonts {
     try_files $uri $uri/;
}

If there are any other locations which might interefere with any of the folders in the /public folder, you might have to do the same for those as well, but it's a super fringe case.

Credits

License

This app is open-sourced software licensed under the MIT license.