Slorm builds is a site to share and vote on Slorm buids.
You will need Docker installed to run this project locally.
Fork the repo, then clone your forked repo.
Install the composer dependencies
docker run --rm \
-u "$(id -u):$(id -g)" \
-v $(pwd):/var/www/html \
-w /var/www/html \
laravelsail/php81-composer:latest \
composer install --ignore-platform-reqs
Copy the .env.example file
cp .env.example .env
Create an alias for Sail
alias sail='[ -f sail ] && bash sail || bash vendor/bin/sail'
Start the containers
sail up -d
SSH into the container
sail shell
Generate the app key
php artisan key:generate
Run migrations and seeders
php artisan migrate --seed
That's it! you've now setup the project's enviroment.