Add PHPNW talk

This commit is contained in:
Oliver Davies 2017-07-06 14:10:23 +01:00
parent 90a5cbdc1f
commit 384fb111b7
3 changed files with 12 additions and 4 deletions

View file

@ -115,6 +115,10 @@ events:
title: NWDUG
location: 'Manchester, UK'
url: 'http://nwdrupal.org.uk'
phpnw-17:
title: PHP North West 2017
location: 'Manchester, UK'
url: 'http://conference.phpnw.org.uk/phpnw17'
phpsc-16:
title: PHP South Coast 2016
location: 'Portsmouth, UK'

View file

@ -13,7 +13,11 @@
<tr>
<td class="column-date">
<div class="event-date display-block">
{{ event.date|date('j F Y') }}
{% if event.fuzzy_date %}
{{ event.date|date('F Y') }}
{% else %}
{{ event.date|date('j F Y') }}
{% endif %}
</div>
{% if event.time %}

View file

@ -1,14 +1,13 @@
---
title: Deploying PHP Applications with Fabric
type: Lightning talk
location: Nomad PHP
type: Talk
slides:
url: https://speakerdeck.com/opdavies/deploying-php-applications-with-fabric
embed: '<script async class="speakerdeck-embed" data-id="c147618ce07546ca92f92983c52d6a41" data-ratio="1.77777777777778" src="//speakerdeck.com/assets/embed.js"></script>'
video:
embed: '<iframe width="560" height="315" src="https://www.youtube.com/embed/kM0MDUJE8ys" frameborder="0" allowfullscreen></iframe>'
url: https://www.youtube.com/watch?v=kM0MDUJE8ys
tags: [meetup, php, fabric]
tags: [meetup, conference, php, fabric]
meta:
og:
title: Deploying PHP Applcations with Fabric
@ -21,6 +20,7 @@ meta:
type: image/png
events:
- { id: nomad_php, date: '2017-04-20', time: '19:00 (CET)' }
- { id: phpnw-17, date: '2017-09', fuzzy_date: true }
---
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).