2018-02-04 18:04:02 +00:00
|
|
|
![alt text](https://photos.app.goo.gl/8K1fVDdWHtpO71LF3)
|
2018-02-03 21:18:07 +00:00
|
|
|
|
2018-01-26 14:41:44 +00:00
|
|
|
## About
|
2018-01-26 14:35:01 +00:00
|
|
|
|
2018-01-26 14:41:44 +00:00
|
|
|
An Application dashboard and launcher
|
2018-01-26 14:35:01 +00:00
|
|
|
|
2018-02-04 18:04:02 +00:00
|
|
|
## Video
|
|
|
|
If you want to see a quick video of it in use, go to https://drive.google.com/file/d/1cijXgmjem_q2OfKMp36qVuXRiyOzvhWC/view
|
|
|
|
|
2018-02-03 16:27:56 +00:00
|
|
|
## 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;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2018-01-26 14:35:01 +00:00
|
|
|
## License
|
|
|
|
|
2018-01-26 14:42:09 +00:00
|
|
|
This app is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
|