To Setup this laravel application it will require following step.
- Create .env file
- Composer install
- Run migration
- Install node dependency
- Run npm
Copy .env.example to .env. Set the required environment variables.
Install otherwise Update composer in your app.
$ composer install
Run migration in your app.
$ php art migrate
Install node in your app following command:
$ npm install
OR
$ yarn install
Run node script in your app using following command which will generate assets:
$ npm run dev