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
This deployment script is zero-downtime, this has two big advantages: deployments don't cause downtime for your users, and deployments are gracefully aborted when something goes wrong.
37
-
To understand what exactly this means, lets first look at what it means if your deployments are not zero-downtime.
39
+
To understand what exactly this means, let's first look at what it means if your deployments are not zero-downtime.
38
40
39
41
A typical not zero-downtime deployment strategy is SSHing into your server, calling `git clone`, and then running `composer install`.
40
42
While these commands are running your application is in limbo: some code is new, some code is old, and some new dependencies are missing entirely.
0 commit comments