For installing project follow all steps.
First download project as zip and extract go inside project folder and run commands
composer install
npm install
npm run prod
For creating sql table
mysql -u root -p
Enter database password then press enter. After all enter this line.CREATE DATABASE taskboard;
exit
Then go project folder enter terminal run commands
php -r "file_exists('.env') || copy('.env.example', '.env');"
Now enter .env file and enter db configs
DB_DATABASE=taskboard
DB_USERNAME=root
DB_PASSWORD=pass
php artisan migrate
php artisan serve
Enjoy 😊
If you add dummy data run
php artisan migrate --seed
[email protected]
password