- Fork this repository (optional).
- 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
. - Migrate the database with
php artisan migrate
. - Install frontend dependencies with
npm install
. - Build and watch frontend assets with
npm run dev
. - 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
. - Run tests with
vendor/bin/phpunit
(set up dev_battle_landing_test DB to run tests).
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.