|
|
8 years ago | |
|---|---|---|
| app | 8 years ago | |
| bootstrap | 8 years ago | |
| config | 8 years ago | |
| database | 8 years ago | |
| docs | 8 years ago | |
| public | 8 years ago | |
| resources | 8 years ago | |
| routes | 8 years ago | |
| storage | 8 years ago | |
| tests | 8 years ago | |
| vendor | 8 years ago | |
| .env | 8 years ago | |
| .env.example | 8 years ago | |
| .gitattributes | 8 years ago | |
| .gitignore | 8 years ago | |
| CHANGELOG.md | 8 years ago | |
| _config.yml | 8 years ago | |
| artisan | 8 years ago | |
| composer.json | 8 years ago | |
| composer.lock | 8 years ago | |
| package-lock.json | 8 years ago | |
| package.json | 8 years ago | |
| phpunit.xml | 8 years ago | |
| readme.md | 8 years ago | |
| server.php | 8 years ago | |
| webpack.mix.js | 8 years ago | |
readme.md
About
An Application dashboard and launcher
Video
If you want to see a quick video of it in use, go to https://drive.google.com/file/d/1cijXgmjem_q2OfKMp36qVuXRiyOzvhWC/view
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
- PHP Framework - Laravel
- Icons - FonteAwesome 5
- Javascript - jQuery
- Colour picker - Huebee
License
This app is open-sourced software licensed under the MIT license.
