Update presentations to use the abstract block

This commit is contained in:
Oliver Davies 2025-03-21 17:11:10 +00:00
parent 51b1ce4d55
commit 76ae7ae61c
26 changed files with 52 additions and 0 deletions

View file

@ -31,6 +31,7 @@ events:
joindin: https://joind.in/talk/4e35d
---
{% block abstract %}
Youve built your application, and now you just need to deploy it. There are various ways that this could be done from (S)FTP, to SCP and rsync, to running commands like “git pull” and “composer install” directly on the server (not recommended).
My favourite deployment tool of late is [Fabric][1] a Python based command line tool for running commands locally as well as on remote servers. Its language and framework agnostic, and unopinionated so you define the steps and workflow that you need from a basic few-step deployment to a full Capistrano style zero-downtime deployment.
@ -38,3 +39,4 @@ My favourite deployment tool of late is [Fabric][1] a Python based command l
This talk will cover some introduction to Fabric and how to write your own fabfiles, and then look at some examples of different use case deployments for your PHP project.
[1]: http://www.fabfile.org
{% endblock %}