From 384fb111b7817a70833052d765b7b4a82dc169dd Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 6 Jul 2017 14:10:23 +0100 Subject: [PATCH] Add PHPNW talk --- app/config/sculpin_site.yml | 4 ++++ source/_partials/talks-table.twig | 6 +++++- source/_talks/deploying-php-with-fabric.md | 6 +++--- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/app/config/sculpin_site.yml b/app/config/sculpin_site.yml index d3eb88e8..dd186924 100644 --- a/app/config/sculpin_site.yml +++ b/app/config/sculpin_site.yml @@ -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' diff --git a/source/_partials/talks-table.twig b/source/_partials/talks-table.twig index 6dc3749d..f087834e 100644 --- a/source/_partials/talks-table.twig +++ b/source/_partials/talks-table.twig @@ -13,7 +13,11 @@
- {{ event.date|date('j F Y') }} + {% if event.fuzzy_date %} + {{ event.date|date('F Y') }} + {% else %} + {{ event.date|date('j F Y') }} + {% endif %}
{% if event.time %} diff --git a/source/_talks/deploying-php-with-fabric.md b/source/_talks/deploying-php-with-fabric.md index 201b2e77..88dcfa2a 100644 --- a/source/_talks/deploying-php-with-fabric.md +++ b/source/_talks/deploying-php-with-fabric.md @@ -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: '' video: embed: '' 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 } --- You’ve 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).