- Laravel https://laravel.com/
- Vue3 https://vuejs.org/
- Pinia https://pinia.vuejs.org/
- Vue Router https://router.vuejs.org/
Follow steps
- After cloning the repository, Run
composer installto install all php dependencies. - Run
npm installto install node_modules - Copy .env.example to .env file and update environment variables.Then run
php artisan migrateto create all table. - Run
php artisan db:seedto run all Seeders. - Run
php artisan key:generateif no app key is there in env. - To create new Storage symblink run :
php artisan storage:link - Run
npm run buildto create build for production. - Run
php artisan serveto locally serve application.