Install PHP and JavaScript libraries via packaging manager.
$ composer install
$ npm install
Copy .env file and edit on database and Slack section. To create the Slack Client ID and Client Secret, please see below.
$ cp .env.example .env
Run the DB migration.
$ php artisan db:migrate
Create the application key and JWTAuth key.
$ php artisan key:generate
$ php artisan jwt:secret
To start the application, run the command as below.
$ php artisan serve
$ npm run watch