Add new consoles in app/Console.php
- Clone the repository locally.
- Install dependencies with
composer install. - Copy
.env.exampleto.envand modify its contents to reflect your local environment. - Generate an application key with
php artisan key:generate. - Install frontend dependencies with
npm install. - If you're not using a tool like Valet or Herd, configure a web server, such as the built-in PHP web server, to serve the site using the
publicdirectory as the document root:php -S localhost:8080 -t public. - Run tests with
php artisan test.