You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New directory name feature to allow use without git.
New config option must be added to previously published configurations
/** * Logic used when creating a deployment directory * * Default => git - uses hash for current HEAD * Options: [ git, rand ] * * If your build does not use git, use rand. */'directory-naming' => 'git',
Copied symlinks are now updated to point to deployment contents
New config option must be added to previously published configurations
/** * Deployment class used. * * Add custom deployments by implementing @see \JTMcC\AtomicDeployments\Interfaces\DeploymentInterface * and adding your class to this config property */'deployment-class' => \JTMcC\AtomicDeployments\Services\Deployment::class,
This package is meant to introduce zero downtime deployments locally for Laravel by copying and linking to a deployment directory after your build has completed.