Add new consoles in app/Console.php
- Clone the repository locally.
- Install dependencies with
composer install
. - Copy
.env.example
to.env
and modify its contents to reflect your local environment. - Generate an application key with
php artisan key:generate
. - Install frontend dependencies with
npm install
. - Configure a web server, such as the built-in PHP web server, to serve the site using the
public
directory as the document root:php -S localhost:8080 -t public
.