Devops With Laravel By Martin Joo -

Build your assets during the build phase of your pipeline (e.g., GitHub Actions), not the deploy phase .

We need a symlink release strategy. Instead of updating the "current" folder, we deploy to a release folder and then symlink. DevOps with Laravel by Martin Joo

When you push git push origin main , your code should test, build, deploy, and migrate without you logging into a server. If you are SSH'ing into a box to run composer update , you have lost the DevOps game. Build your assets during the build phase of your pipeline (e

By Martin Joo

# Simplified zero-downtime flow mkdir releases/ date cp -r . releases/ date ln -nfs releases/ date current php artisan migrate --force # Runs outside the webroot php artisan queue:restart Run php artisan migrate before switching the symlink. Your old code (v1) can run on the old database schema, and the new code (v2) wakes up on the new schema. But be careful—always write reversible migrations. 3. Environment Variables: Stop using .env on the server If you have a .env file on your production server that you manually edit via nano , you have a single point of failure and no audit trail. When you push git push origin main ,