Help support the maintenance of this package by buying me a coffee or two.
Lasso is a Laravel package designed to make your deployments faster and easier. One problem developers have is dealing with their built assets (Webpack/Laravel Mix). Do you store them in Git? Do you deploy them on the server? Each of these solutions for assets can cause headaches for the developer, including merge conflicts and slowing down servers.
Lasso compiles your assets on your local machine or in Continuous Integration and then uploads the assets to a Laravel Filesystem (Flysystem). On deployment, Lasso will then download those assets from the Filesystem. It uses Git to keep track of the last asset bundle created, as well as automatically cleans old bundles.
Lasso requires Laravel 6+ and PHP 7.3 or higher. To install Lasso, simply run the composer require command below:
composer require sammyjo20/lasso
After that, run the command below to create the lasso.php config file:
php artisan vendor:publish --tag=lasso-config
Read this excellent blog post by Alex Justesen on how to integrate Lasso with your CI/CD pipeline: https://lasso-ci-cd.alexjustesen.com/
Now make sure to configure the lasso.php config file in your app/config directory. Make sure to specify a Filesystem Disk you would like Lasso to use.
Warning: If you have multiple projects, make sure to change the "upload_to" path, otherwise you may have asset conflicts in your applications.
If you would like to use the recommended approach, make sure to add all of your public assets (js/css/images/mix-manifest.json) to your .gitignore file! Please also make sure to add the ".lasso" folder to your .gitignore file:
.lasso
Lasso comes with two commands that should be used by your project/deployment pipeline. The recommended usage is to run the "publish" command on your local machine, which is likely much more powerful than Continuous Integration or compiling on the server.
The publish command should be executed when you would like to upload/publish new assets to your application. Lasso will run the provided script (e.g npm run production) and then zip up the files created by the compiler (e.g Webpack).
php artisan lasso:publish
After running this command, Lasso will create a "lasso-bundle.json" file in your application's root directory. This is the recommended approach as when you commit the file, Lasso will use this to download the latest bundle relating to your commit. If you don't use Git, for example if you are compiling assets within Continuous Integration, you can add the --no-git
flag to the command.
Warning: When using the --no-git
flag, versioning will be limited as the lasso-bundle.json is stored in your Filesystem, rather than your repository. Using Git is the recommended approach.
The pull command should then be executed on your deployment script, or on the servers which will require the assets to be on. Simply run the command below. If you are using Laravel Forge, add this command to your deployment script. If you are using Laravel Envoyer, add this to the list of hooks during your deployment. It should be run on every server.
php artisan lasso:pull
To use Lasso during continuous integration, it's recommended to run the php artisan lasso:publish
command, and then commit the "lasso-bundle.json" file which is created. If you aren't able to commit files during your CI process, use the --no-git
flag on the command, e.g: php artisan lasso:publish --no-git
Out of the box, Lasso supports multi-environment applications. If your application has a staging environment, for example - you can use the LASSO_ENV
environment variable to set the current environment. On your web servers:
LASSO_ENV=staging
Lasso can also trigger webhooks when a command has been executed successfully. Simply list the URLs in the "webhooks" array in the lasso.php config file.
/*
* Lasso will can also trigger Webhooks after its commands have been
* successfully executed. You may specify URLs that Lasso will POST
* to, for each of the commands.
*/
'webhooks' => [
/*
* Specify which webhooks should be triggered after a successful
* "php artisan lasso:publish" command execution.
*/
'publish' => [
//
],
/*
* Specify which webhooks should be triggered after a successful
* "php artisan lasso:pull" command execution.
*/
'pull' => [
//
]
],
Lasso will automatically try to keep your Filesystem clean, and will automatically delete old bundles. You can increase/decrease the amount of Bundles Lasso will keep per enviroment by setting the max_bundles
configuratiion variable in the config/lasso.php file.
/*
* Lasso will automatically version the assets. This is useful if you
* suddenly need to roll-back a deployment and use an older version
* of built files. You can set the maximum amount of files stored here.
*/
'max_bundles' => 5,
Lasso will copy the public directory during it's publish process. If you have any files or directories that you would like Lasso to ignore during this process, specify them in the excluded_files
and excluded_directories
configuation variables in the config/lasso.php file.
/*
* If there any directories/files you would like to Lasso to
* exclude when uploading to the Filesystem, specify them below.
*/
'excluded_files' => [],
'excluded_directories' => [],
Special thanks to @codepotato for the logo! ❤️
If you find any security related issues, please send me an email to [email protected].
This is my first Laravel package, I really hope it's been useful to you, if you like my work and want to show some love, consider buying me some coding fuel (Coffee) ❤