WIP
This commit is contained in:
parent
e1dbd21ef2
commit
54f5ff5814
|
@ -15,6 +15,11 @@ events:
|
|||
location: Bristol, UK
|
||||
website: https://2016.drupalcampbristol.org.uk
|
||||
|
||||
drupalcamp-dublin-17:
|
||||
name: DrupalCamp Dublin 2017
|
||||
location: Dublin, Ireland
|
||||
website: http://2017.drupal.ie
|
||||
|
||||
drupalcamp-london-14:
|
||||
name: DrupalCamp London 2014
|
||||
location: London, UK
|
||||
|
@ -195,3 +200,11 @@ events:
|
|||
date: '2017-10-01'
|
||||
time: '09:00 - 09:45'
|
||||
talk: deploying-php-with-fabric
|
||||
|
||||
- event: drupalcamp-dublin-17
|
||||
date: '2017-10-20'
|
||||
talk: deploying-drupal-fabric
|
||||
|
||||
- event: drupalcamp-dublin-17
|
||||
date: '2017-10-20'
|
||||
talk: test-driven-drupal-simpletest-phpunit
|
||||
|
|
29
source/_talks/deploying-drupal-fabric.md
Normal file
29
source/_talks/deploying-drupal-fabric.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
id: deploying-drupal-fabric
|
||||
title: 'Deploying Drupal (and anything else) with Fabric'
|
||||
type: Talk
|
||||
slides:
|
||||
url: ~
|
||||
embed: ~
|
||||
video:
|
||||
embed: ~
|
||||
url: ~
|
||||
tags: [meetup, conference, php, fabric, drupal]
|
||||
meta:
|
||||
og:
|
||||
title: Deploying PHP Applcations with Fabric
|
||||
description: "You've built your PHP application, now learn how to deploy it with Fabric."
|
||||
type: website
|
||||
image:
|
||||
url: /assets/images/talks/deploying-php-fabric.png
|
||||
width: 1280
|
||||
height: 800
|
||||
type: image/png
|
||||
---
|
||||
You’ve built your website, 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. It’s 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.
|
||||
|
||||
This talk will cover some introduction to Fabric and how to write your own fabfiles, to then covering some examples and demos of different use case deployments for your Drupal project.
|
||||
|
||||
[1]: http://www.fabfile.org
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
id: deploying-php-with-fabric
|
||||
title: Deploying PHP Applications with Fabric
|
||||
title: Deploying PHP Applications (and anything else) with Fabric
|
||||
type: Talk
|
||||
slides:
|
||||
url: https://speakerdeck.com/opdavies/deploying-php-applications-with-fabric
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: Test Driven Drupal Development with SimpleTest and PHPUnit
|
||||
title: TDD - Test Driven Drupal
|
||||
type: Talk
|
||||
slides:
|
||||
url: https://speakerdeck.com/opdavies/test-driven-drupal-development-with-simpletest-and-phpunit-drupalcamp-london-17
|
||||
|
|
|
@ -19,7 +19,7 @@ There is also information about events that I’ve attended and spoken at on my
|
|||
|
||||
{% for date in site.events.dates %}
|
||||
{% if date.date >= 'today'|date('Y-m-d') %}
|
||||
{% set upcoming_events = upcoming_events|reverse|merge([{
|
||||
{% set upcoming_events = upcoming_events|merge([{
|
||||
date: date,
|
||||
event: site.events.events[date.event],
|
||||
talks: data.talks,
|
||||
|
|
Loading…
Reference in a new issue