Handesk
AJA • April 22, 2020
laravelHandesk is a ticketing and lead management
Handesk is open-sourced software licensed under the MIT license.
Install Laragon according to this post.
Within Laragon add imap php extension.
Create a mysql handesk database (utf8mb4_unicode_ci
) with phpmyadmin.
Download Handesk and unzip to handesk or use git :
git clone https://github.com/BadChoice/handesk.git
Run composer install (use composer.lock and not composer.json).
cd handesk
composer install
Copy .env.example to .env, generate the application key and change database mysql parameters in c:\laragon\www\handesk\\.env
file.
cp .env.example .env
php artisan key:generate
.env
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=handesk
DB_USERNAME=root
DB_PASSWORD=
Migrate with seeds.
php artisan migrate --seed
Link the [public/storage] directory.
php artisan storage:link
To prevent composer update rename composer.json and composer.lock.
Reload apache and login at http://handesk.test/login with admin@handesk.io / admin.