SlideShare a Scribd company logo
1 of 97
Download to read offline
Professional Workflow From
Development To Deployment
• Why using FTP to move files live is a bad idea
• Creating simple local dev environments for PHP
• Getting your code into a remotely hosted git
repository
• Deploying using a deployment service
A beginner level session covering:
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Rachel Andrew
http://rachelandrew.co.uk
@rachelandrew
http://grabaperch.com
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Many issues coming into support stem from
poor development and deployment processes.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
The Big Problems
• Developing directly on live sites or in subfolders of live sites
• Developing in subfolders locally
• Setting up local development environments that are so
different to the eventual live server that there is no
confidence when going live
• Deploying via FTP piecemeal and having sites blow up due to
missing files
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
What’s the problem with (S)FTP?
• You are transferring files one by one to the server with no
management of that transfer
• One failed transfer can break the site
• Old files may be left on the server - this could be a security
risk in the case of third party software
• Very hard to debug issues caused by missing files especially
where they are deep in third party code
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Improving workflow is the best way to give
yourself more hours in the day.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
These are baby steps to improved workflow.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
We need …
• to develop multiple websites on our own computer.
• to know that our live server and local server support the
same things.
• to deploy our site and have confidence that what is on the live
server is identical to our local version.
• to allow clients to view a site in progress during initial
development and also when making changes in future.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Working locally
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Developing live on the server!
• High chance of making a change that breaks something about
the site.
• No way for the client to preview changes
• Local version in sync? Do we even have a local version?
• If you get to the beach, you’ll be fixing a website. On your
phone. Have fun with that.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Q. How do you deploy your sites to the server?
A. We just edit on the server directly.
8%
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Let’s develop in a subfolder!
• Create a ‘newsite’ subfolder and develop the site there
• Potential to make an accidental change to the live site with an
FTP mishap
• If the site is in a subfolder then it doesn’t replicate the live
site. To go live you have to change all of your file paths.
• You are not going to the beach. You are fixing up file paths.
More fun!
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
File paths and URLs are fundamental to the
web. Changing them on going live is messy
and fragile.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Developing remotely is going to be a slow way
to work.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Mac Users - install Apache, PHP and MySQL
on your machine.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
homebrew.sh
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
https://echo.co/blog/os-x-1010-yosemite-local-development-environment-apache-php-and-mysql-homebrew
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
MAMP, XAMPP, WAMP
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Q. How do you develop sites locally that require a
web server?
A. MAMP, WAMP, XAMPP or similar
63%
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Linux
Apache
MySQL
PHP
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Take your pick
• Mamp - https://www.mamp.info/en/
• Wamp - http://sourceforge.net/projects/wampserver/
• Xampp - https://www.apachefriends.org
• EasyPHP - http://www.easyphp.org/
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
VirtualHosts - many websites on one server
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Avoid creating your own local version of
developing in a subfolder. Remember - we
don’t want to change file paths to go live!
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
https://www.mamp.info/en/mamp-pro/
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Access multiple sites at client1.dev, client2.dev
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
In an ideal world your local development
environment is identical to the live server.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
http://php.net/manual/en/function.strftime.php
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
PHP Versions can be different. PHP modules
may not be available on the live server.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Virtual Machines
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
virtualbox.org
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
vagrantup.com
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
https://puphpet.com
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
https://www.smashingmagazine.com/2015/07/development-to-deployment-workflow/
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Upload a PHP file with
this function to find out
what is available on your
live server.
<?php phpinfo();?>
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Things to check on your live server
• PHP Version
• Installed modules such as gd for image processing
• post_max_size and upload_max_filesize determine the size
of files that can be uploaded
• max_input_vars is the number of form fields allowed in a
post
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Shared Folders
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Basic commands for
Vagrant.
// start the VM
> vagrant up
// shut down the VM
> vagrant halt
//destroy the VM
> vagrant destroy
//ssh access
> vagrant ssh
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
http://vagrantmanager.com/
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Share your package with anyone else working
on the site. The whole team can then have the
exact same development setup.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
We need …
to develop multiple websites on our own computer
to know that our live server and local server support the same
things
to deploy our site and have confidence that what is on the live
server is identical to our local version
to allow clients to view a site in progress
to leave work early and go to the beach.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
http://github.com
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
http://beanstalkapp.com
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
If you already have files
you need to add to a git
repository.
cd my-git-repo
git remote add beanstalk
git@accountname.beanstalkapp.com:/gitreponame.git
git push beanstalk
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
If you are starting a new
project.
git clone https://accountname.git.beanstalkapp.com/
gitreponame.git -o beanstalk
cd gitreponame
echo "This is my new project on Beanstalk." > README
git add README
git commit -m "My first commit."
git push beanstalk master
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
www.git-tower.com
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
www.git-tower.com/learn/ebook
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Tomorrow at 2pm: Practical Git
for Developers
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
A branch is a version of your site. We are
deploying the master branch to live.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Production refers to your live site. Staging a
site where changes are tested and previewed.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
We make a change to our files, commit and
push them to Beanstalk. The Master Branch
now contains only what should be deployed.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Deploy all the things
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Deployment with Beanstalk
• Deployments can be Manual or Automatic
• Automatic deployments happen when code is pushed to the
branch you are deploying
• Manual deployments are triggered by you at Beanstalk once
you are happy to go live
• Once a deploy happens Beanstalk makes sure the code on the
live site matches that in Git, removing deleted files, replacing
modified ones and adding new files
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
On Deploy
• Beanstalk connects to your server
• ensures that the files on the server match the files in the
branch you are deploying
• on initial deploy all existing files on the server have to be
checked. Your first deploy will be slow!
• subsequent deploys only change things that have changed in
git.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Deployment Tips
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Create multiple server configuration files
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
http://solutions.grabaperch.com/development/multiple-server-config
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Use .gitignore to keep things out of Beanstalk
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
https://github.com/github/gitignore
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Our new workflow.
1. Edit files as usual on your computer
2. View your site via a web server on that computer
3. Commit changes to Git
4. Push to Beanstalk
5. Login to Beanstalk and hit Deploy
6. Go to the beach.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Databases and Uploaded Assets
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Add CMS managed asset folders to
a .gitignore file so they are not committed
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Use a CDN for assets if your CMS enables it.
Faster download speeds with bonus ease of
management across environments.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Initial deploy to live also involves an export
and import of the MySQL database.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
How to deal with schema or even data
changes on an existing site?
How do you manage database changes between development and live?
“try to keep live db current, and keep list of
changes in settings on dev environment.
this is the one thing that needs a better
solution in my development workflow, esp.
when working together with other
developers on one project.”
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
How do you manage database changes between development and live?
“Labour intensively. Save a dump of the
live version. Then compare the structure of
the development and live structures in a
diff checker. Finally make the updates
required on the live version, importing the
new data. ”
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Create a Maintenance Window where no
changes are made to live.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
https://deliciousbrains.com/wp-migrate-db-pro/
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
http://www.navicat.com/products/navicat-for-mysql
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
We need …
to develop multiple websites on our own computer
to know that our live server and local server support the same
things
to deploy our site and have confidence that what is on the live
server is identical to our local version
to allow clients to view a site in progress
to leave work early and go to the beach.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
A Staging Server
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Using an inexpensive VPS you can create sites
at clientname.yourcompany.com for preview.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
You can deploy the master branch to staging
to check before deploying to production.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Even better, you can use your staging server
to deploy commits to a staging branch.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Deploy with a tag to any commit or push
comment. For example: [Deploy: Staging]
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Try to keep your Master branch deployable to
live. If disaster strikes you can redeploy.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Remember to backup your database and
any resources regularly!
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Logging in and downloading the assets when
you remember is not a backup strategy.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Bonus feature! We can now easily switch
hosting if our current host becomes unreliable.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Unsolved problems
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
There are product opportunities in helping
people in shared PHP hosting land navigate
these issues.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Pre and post-processed CSS and
JavaScript files.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Backup of CMS-managed resources
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Database migrations
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
We can …
develop multiple websites on our own computer
know that our live server and local server support the same
things
deploy our site and have confidence that what is on the live
server is identical to our local version
allow clients to view a site in progress
leave work early and go to the beach.
@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
Thank you!
Slides & resources at:
http://rachelandrew.co.uk/presentations/deploy
@rachelandrew

More Related Content

What's hot

12 tips on Django Best Practices
12 tips on Django Best Practices12 tips on Django Best Practices
12 tips on Django Best PracticesDavid Arcos
 
Becoming a more productive Rails Developer
Becoming a more productive Rails DeveloperBecoming a more productive Rails Developer
Becoming a more productive Rails DeveloperJohn McCaffrey
 
RailsConf 2018 - Webpacking for the Journey Ahead
RailsConf 2018 - Webpacking for the Journey AheadRailsConf 2018 - Webpacking for the Journey Ahead
RailsConf 2018 - Webpacking for the Journey AheadTaylor Jones
 
Browser Wars Episode 1: The Phantom Menace
Browser Wars Episode 1: The Phantom MenaceBrowser Wars Episode 1: The Phantom Menace
Browser Wars Episode 1: The Phantom MenaceNicholas Zakas
 
Are Today’s Good Practices… Tomorrow’s Performance Anti-Patterns?
Are Today’s Good Practices… Tomorrow’s Performance Anti-Patterns?Are Today’s Good Practices… Tomorrow’s Performance Anti-Patterns?
Are Today’s Good Practices… Tomorrow’s Performance Anti-Patterns?Andy Davies
 
[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web DesignChristopher Schmitt
 
The Dirty Little Secrets They Didn’t Teach You In Pentesting Class
The Dirty Little Secrets They Didn’t Teach You In Pentesting Class The Dirty Little Secrets They Didn’t Teach You In Pentesting Class
The Dirty Little Secrets They Didn’t Teach You In Pentesting Class Chris Gates
 
The Case for HTTP/2
The Case for HTTP/2The Case for HTTP/2
The Case for HTTP/2Andy Davies
 
Why Node, Express and Postgres - presented 23 Feb 15, Talkjs, Microsoft Audit...
Why Node, Express and Postgres - presented 23 Feb 15, Talkjs, Microsoft Audit...Why Node, Express and Postgres - presented 23 Feb 15, Talkjs, Microsoft Audit...
Why Node, Express and Postgres - presented 23 Feb 15, Talkjs, Microsoft Audit...Calvin Tan
 
The Case for HTTP/2 - EpicFEL Sept 2015
The Case for HTTP/2 - EpicFEL Sept 2015The Case for HTTP/2 - EpicFEL Sept 2015
The Case for HTTP/2 - EpicFEL Sept 2015Andy Davies
 
What does the browser pre-loader do?
What does the browser pre-loader do?What does the browser pre-loader do?
What does the browser pre-loader do?Andy Davies
 
Voices that matter: High Performance Web Sites
Voices that matter: High Performance Web SitesVoices that matter: High Performance Web Sites
Voices that matter: High Performance Web SitesStoyan Stefanov
 
Django best practices
Django best practicesDjango best practices
Django best practicesAdam Haney
 
960 grid psd
960 grid psd960 grid psd
960 grid psdRaju Nag
 
Functional Programming with Immutable Data Structures
Functional Programming with Immutable Data StructuresFunctional Programming with Immutable Data Structures
Functional Programming with Immutable Data Structureselliando dias
 
What's New and Newer in Apache httpd-24
What's New and Newer in Apache httpd-24What's New and Newer in Apache httpd-24
What's New and Newer in Apache httpd-24Jim Jagielski
 
第5回SCDN - Things that become possible with HTML5
第5回SCDN - Things that become possible with HTML5第5回SCDN - Things that become possible with HTML5
第5回SCDN - Things that become possible with HTML5scdn
 

What's hot (20)

12 tips on Django Best Practices
12 tips on Django Best Practices12 tips on Django Best Practices
12 tips on Django Best Practices
 
Becoming a more productive Rails Developer
Becoming a more productive Rails DeveloperBecoming a more productive Rails Developer
Becoming a more productive Rails Developer
 
Free django
Free djangoFree django
Free django
 
RailsConf 2018 - Webpacking for the Journey Ahead
RailsConf 2018 - Webpacking for the Journey AheadRailsConf 2018 - Webpacking for the Journey Ahead
RailsConf 2018 - Webpacking for the Journey Ahead
 
Browser Wars Episode 1: The Phantom Menace
Browser Wars Episode 1: The Phantom MenaceBrowser Wars Episode 1: The Phantom Menace
Browser Wars Episode 1: The Phantom Menace
 
Irb Tips and Tricks
Irb Tips and TricksIrb Tips and Tricks
Irb Tips and Tricks
 
Are Today’s Good Practices… Tomorrow’s Performance Anti-Patterns?
Are Today’s Good Practices… Tomorrow’s Performance Anti-Patterns?Are Today’s Good Practices… Tomorrow’s Performance Anti-Patterns?
Are Today’s Good Practices… Tomorrow’s Performance Anti-Patterns?
 
[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design
 
The Dirty Little Secrets They Didn’t Teach You In Pentesting Class
The Dirty Little Secrets They Didn’t Teach You In Pentesting Class The Dirty Little Secrets They Didn’t Teach You In Pentesting Class
The Dirty Little Secrets They Didn’t Teach You In Pentesting Class
 
The Case for HTTP/2
The Case for HTTP/2The Case for HTTP/2
The Case for HTTP/2
 
Why Node, Express and Postgres - presented 23 Feb 15, Talkjs, Microsoft Audit...
Why Node, Express and Postgres - presented 23 Feb 15, Talkjs, Microsoft Audit...Why Node, Express and Postgres - presented 23 Feb 15, Talkjs, Microsoft Audit...
Why Node, Express and Postgres - presented 23 Feb 15, Talkjs, Microsoft Audit...
 
The Case for HTTP/2 - EpicFEL Sept 2015
The Case for HTTP/2 - EpicFEL Sept 2015The Case for HTTP/2 - EpicFEL Sept 2015
The Case for HTTP/2 - EpicFEL Sept 2015
 
Web2.0 : an introduction
Web2.0 : an introductionWeb2.0 : an introduction
Web2.0 : an introduction
 
What does the browser pre-loader do?
What does the browser pre-loader do?What does the browser pre-loader do?
What does the browser pre-loader do?
 
Voices that matter: High Performance Web Sites
Voices that matter: High Performance Web SitesVoices that matter: High Performance Web Sites
Voices that matter: High Performance Web Sites
 
Django best practices
Django best practicesDjango best practices
Django best practices
 
960 grid psd
960 grid psd960 grid psd
960 grid psd
 
Functional Programming with Immutable Data Structures
Functional Programming with Immutable Data StructuresFunctional Programming with Immutable Data Structures
Functional Programming with Immutable Data Structures
 
What's New and Newer in Apache httpd-24
What's New and Newer in Apache httpd-24What's New and Newer in Apache httpd-24
What's New and Newer in Apache httpd-24
 
第5回SCDN - Things that become possible with HTML5
第5回SCDN - Things that become possible with HTML5第5回SCDN - Things that become possible with HTML5
第5回SCDN - Things that become possible with HTML5
 

Viewers also liked

คำราชาศัพท์
คำราชาศัพท์คำราชาศัพท์
คำราชาศัพท์Pin Pinzaza
 
Tech for Tots Gail Lovely 2011
Tech for Tots Gail Lovely 2011Tech for Tots Gail Lovely 2011
Tech for Tots Gail Lovely 2011Gail Lovely
 
Books Are Not Dead
Books Are Not DeadBooks Are Not Dead
Books Are Not DeadGail Lovely
 
Company profile Pro servis link
Company profile Pro servis linkCompany profile Pro servis link
Company profile Pro servis linkproservis
 
Zmiany do uchwały w sprawie rady seniorów
Zmiany do uchwały w sprawie rady seniorówZmiany do uchwały w sprawie rady seniorów
Zmiany do uchwały w sprawie rady seniorówFundacja "Merkury"
 
Angel Springs Product Brochure 2015
Angel Springs Product Brochure 2015Angel Springs Product Brochure 2015
Angel Springs Product Brochure 2015Chris Murphy
 
Embracing Hadoop with a musical touch!
Embracing Hadoop with a musical touch!Embracing Hadoop with a musical touch!
Embracing Hadoop with a musical touch!DataWorks Summit
 
Literacy Roadtrip presentation by Gail Lovely
Literacy Roadtrip presentation by Gail LovelyLiteracy Roadtrip presentation by Gail Lovely
Literacy Roadtrip presentation by Gail LovelyGail Lovely
 
فيتامين دي
فيتامين ديفيتامين دي
فيتامين ديsho-69
 
Speedup your site mit Caching
Speedup your site mit CachingSpeedup your site mit Caching
Speedup your site mit Cachingwpmeetupka
 
Kevin Long - DRI Training Series Day UCC: Organising Your Collection
Kevin Long - DRI Training Series Day UCC: Organising Your CollectionKevin Long - DRI Training Series Day UCC: Organising Your Collection
Kevin Long - DRI Training Series Day UCC: Organising Your Collectiondri_ireland
 
Martin Donnelly - Digital Data Curation at the Digital Curation Centre (DH2016)
Martin Donnelly - Digital Data Curation at the Digital Curation Centre (DH2016)Martin Donnelly - Digital Data Curation at the Digital Curation Centre (DH2016)
Martin Donnelly - Digital Data Curation at the Digital Curation Centre (DH2016)dri_ireland
 
Dr Natalie Harrower - DRI and Open Data
Dr Natalie Harrower - DRI and Open DataDr Natalie Harrower - DRI and Open Data
Dr Natalie Harrower - DRI and Open Datadri_ireland
 

Viewers also liked (14)

Video marketing
Video marketingVideo marketing
Video marketing
 
คำราชาศัพท์
คำราชาศัพท์คำราชาศัพท์
คำราชาศัพท์
 
Tech for Tots Gail Lovely 2011
Tech for Tots Gail Lovely 2011Tech for Tots Gail Lovely 2011
Tech for Tots Gail Lovely 2011
 
Books Are Not Dead
Books Are Not DeadBooks Are Not Dead
Books Are Not Dead
 
Company profile Pro servis link
Company profile Pro servis linkCompany profile Pro servis link
Company profile Pro servis link
 
Zmiany do uchwały w sprawie rady seniorów
Zmiany do uchwały w sprawie rady seniorówZmiany do uchwały w sprawie rady seniorów
Zmiany do uchwały w sprawie rady seniorów
 
Angel Springs Product Brochure 2015
Angel Springs Product Brochure 2015Angel Springs Product Brochure 2015
Angel Springs Product Brochure 2015
 
Embracing Hadoop with a musical touch!
Embracing Hadoop with a musical touch!Embracing Hadoop with a musical touch!
Embracing Hadoop with a musical touch!
 
Literacy Roadtrip presentation by Gail Lovely
Literacy Roadtrip presentation by Gail LovelyLiteracy Roadtrip presentation by Gail Lovely
Literacy Roadtrip presentation by Gail Lovely
 
فيتامين دي
فيتامين ديفيتامين دي
فيتامين دي
 
Speedup your site mit Caching
Speedup your site mit CachingSpeedup your site mit Caching
Speedup your site mit Caching
 
Kevin Long - DRI Training Series Day UCC: Organising Your Collection
Kevin Long - DRI Training Series Day UCC: Organising Your CollectionKevin Long - DRI Training Series Day UCC: Organising Your Collection
Kevin Long - DRI Training Series Day UCC: Organising Your Collection
 
Martin Donnelly - Digital Data Curation at the Digital Curation Centre (DH2016)
Martin Donnelly - Digital Data Curation at the Digital Curation Centre (DH2016)Martin Donnelly - Digital Data Curation at the Digital Curation Centre (DH2016)
Martin Donnelly - Digital Data Curation at the Digital Curation Centre (DH2016)
 
Dr Natalie Harrower - DRI and Open Data
Dr Natalie Harrower - DRI and Open DataDr Natalie Harrower - DRI and Open Data
Dr Natalie Harrower - DRI and Open Data
 

Similar to ConFoo 2016: Development to Deployment

Professional Workflow from Development to Deployment
Professional Workflow from Development to DeploymentProfessional Workflow from Development to Deployment
Professional Workflow from Development to DeploymentRachel Andrew
 
Configuration Management with Puppet
Configuration Management with Puppet Configuration Management with Puppet
Configuration Management with Puppet Rachel Andrew
 
Laravel Forge: Hello World to Hello Production
Laravel Forge: Hello World to Hello ProductionLaravel Forge: Hello World to Hello Production
Laravel Forge: Hello World to Hello ProductionJoe Ferguson
 
Rock Solid Deployment of Web Applications
Rock Solid Deployment of Web ApplicationsRock Solid Deployment of Web Applications
Rock Solid Deployment of Web ApplicationsPablo Godel
 
php[world] 2015 Laravel 5.1: From Homestead to the Cloud
php[world] 2015 Laravel 5.1: From Homestead to the Cloudphp[world] 2015 Laravel 5.1: From Homestead to the Cloud
php[world] 2015 Laravel 5.1: From Homestead to the CloudJoe Ferguson
 
WordCamp Belfast DevOps for Beginners
WordCamp Belfast DevOps for BeginnersWordCamp Belfast DevOps for Beginners
WordCamp Belfast DevOps for BeginnersStewart Ritchie
 
ZendCon 2015 - Laravel Forge: Hello World to Hello Production
ZendCon 2015 - Laravel Forge: Hello World to Hello ProductionZendCon 2015 - Laravel Forge: Hello World to Hello Production
ZendCon 2015 - Laravel Forge: Hello World to Hello ProductionJoe Ferguson
 
Continuous Integration with Open Source Tools - PHPUgFfm 2014-11-20
Continuous Integration with Open Source Tools - PHPUgFfm 2014-11-20Continuous Integration with Open Source Tools - PHPUgFfm 2014-11-20
Continuous Integration with Open Source Tools - PHPUgFfm 2014-11-20Michael Lihs
 
DevOps Camp 2017 NYC Local Development using Vagrant by Anthony Alvarez
DevOps Camp 2017 NYC Local Development using Vagrant by Anthony AlvarezDevOps Camp 2017 NYC Local Development using Vagrant by Anthony Alvarez
DevOps Camp 2017 NYC Local Development using Vagrant by Anthony AlvarezAnthony Alvarez
 
Laravel Forge: Hello World to Hello Production
Laravel Forge: Hello World to Hello ProductionLaravel Forge: Hello World to Hello Production
Laravel Forge: Hello World to Hello ProductionJoe Ferguson
 
Introduction to Infrastructure as Code & Automation / Introduction to Chef
Introduction to Infrastructure as Code & Automation / Introduction to ChefIntroduction to Infrastructure as Code & Automation / Introduction to Chef
Introduction to Infrastructure as Code & Automation / Introduction to ChefNathen Harvey
 
Symfony Live NYC 2014 - Rock Solid Deployment of Symfony Apps
Symfony Live NYC 2014 -  Rock Solid Deployment of Symfony AppsSymfony Live NYC 2014 -  Rock Solid Deployment of Symfony Apps
Symfony Live NYC 2014 - Rock Solid Deployment of Symfony AppsPablo Godel
 
Madison PHP 2015 - DevOps For Small Teams
Madison PHP 2015 - DevOps For Small TeamsMadison PHP 2015 - DevOps For Small Teams
Madison PHP 2015 - DevOps For Small TeamsJoe Ferguson
 
Vagrant for local and team WordPress Development
Vagrant for local and team WordPress DevelopmentVagrant for local and team WordPress Development
Vagrant for local and team WordPress DevelopmentAnthony Alvarez
 
ZendCon 2015 - DevOps for Small Teams
ZendCon 2015 - DevOps for Small TeamsZendCon 2015 - DevOps for Small Teams
ZendCon 2015 - DevOps for Small TeamsJoe Ferguson
 
Contributing to WordPress core - a primer
Contributing to WordPress core - a primerContributing to WordPress core - a primer
Contributing to WordPress core - a primerlessbloat
 
Scalable Django Architecture
Scalable Django ArchitectureScalable Django Architecture
Scalable Django ArchitectureRami Sayar
 
SymfonyCon Madrid 2014 - Rock Solid Deployment of Symfony Apps
SymfonyCon Madrid 2014 - Rock Solid Deployment of Symfony AppsSymfonyCon Madrid 2014 - Rock Solid Deployment of Symfony Apps
SymfonyCon Madrid 2014 - Rock Solid Deployment of Symfony AppsPablo Godel
 
Picnic Software - Developing a flexible and scalable application
Picnic Software - Developing a flexible and scalable applicationPicnic Software - Developing a flexible and scalable application
Picnic Software - Developing a flexible and scalable applicationNick Josevski
 
Introduction to Infrastructure as Code & Automation / Introduction to Chef
Introduction to Infrastructure as Code & Automation / Introduction to ChefIntroduction to Infrastructure as Code & Automation / Introduction to Chef
Introduction to Infrastructure as Code & Automation / Introduction to ChefAll Things Open
 

Similar to ConFoo 2016: Development to Deployment (20)

Professional Workflow from Development to Deployment
Professional Workflow from Development to DeploymentProfessional Workflow from Development to Deployment
Professional Workflow from Development to Deployment
 
Configuration Management with Puppet
Configuration Management with Puppet Configuration Management with Puppet
Configuration Management with Puppet
 
Laravel Forge: Hello World to Hello Production
Laravel Forge: Hello World to Hello ProductionLaravel Forge: Hello World to Hello Production
Laravel Forge: Hello World to Hello Production
 
Rock Solid Deployment of Web Applications
Rock Solid Deployment of Web ApplicationsRock Solid Deployment of Web Applications
Rock Solid Deployment of Web Applications
 
php[world] 2015 Laravel 5.1: From Homestead to the Cloud
php[world] 2015 Laravel 5.1: From Homestead to the Cloudphp[world] 2015 Laravel 5.1: From Homestead to the Cloud
php[world] 2015 Laravel 5.1: From Homestead to the Cloud
 
WordCamp Belfast DevOps for Beginners
WordCamp Belfast DevOps for BeginnersWordCamp Belfast DevOps for Beginners
WordCamp Belfast DevOps for Beginners
 
ZendCon 2015 - Laravel Forge: Hello World to Hello Production
ZendCon 2015 - Laravel Forge: Hello World to Hello ProductionZendCon 2015 - Laravel Forge: Hello World to Hello Production
ZendCon 2015 - Laravel Forge: Hello World to Hello Production
 
Continuous Integration with Open Source Tools - PHPUgFfm 2014-11-20
Continuous Integration with Open Source Tools - PHPUgFfm 2014-11-20Continuous Integration with Open Source Tools - PHPUgFfm 2014-11-20
Continuous Integration with Open Source Tools - PHPUgFfm 2014-11-20
 
DevOps Camp 2017 NYC Local Development using Vagrant by Anthony Alvarez
DevOps Camp 2017 NYC Local Development using Vagrant by Anthony AlvarezDevOps Camp 2017 NYC Local Development using Vagrant by Anthony Alvarez
DevOps Camp 2017 NYC Local Development using Vagrant by Anthony Alvarez
 
Laravel Forge: Hello World to Hello Production
Laravel Forge: Hello World to Hello ProductionLaravel Forge: Hello World to Hello Production
Laravel Forge: Hello World to Hello Production
 
Introduction to Infrastructure as Code & Automation / Introduction to Chef
Introduction to Infrastructure as Code & Automation / Introduction to ChefIntroduction to Infrastructure as Code & Automation / Introduction to Chef
Introduction to Infrastructure as Code & Automation / Introduction to Chef
 
Symfony Live NYC 2014 - Rock Solid Deployment of Symfony Apps
Symfony Live NYC 2014 -  Rock Solid Deployment of Symfony AppsSymfony Live NYC 2014 -  Rock Solid Deployment of Symfony Apps
Symfony Live NYC 2014 - Rock Solid Deployment of Symfony Apps
 
Madison PHP 2015 - DevOps For Small Teams
Madison PHP 2015 - DevOps For Small TeamsMadison PHP 2015 - DevOps For Small Teams
Madison PHP 2015 - DevOps For Small Teams
 
Vagrant for local and team WordPress Development
Vagrant for local and team WordPress DevelopmentVagrant for local and team WordPress Development
Vagrant for local and team WordPress Development
 
ZendCon 2015 - DevOps for Small Teams
ZendCon 2015 - DevOps for Small TeamsZendCon 2015 - DevOps for Small Teams
ZendCon 2015 - DevOps for Small Teams
 
Contributing to WordPress core - a primer
Contributing to WordPress core - a primerContributing to WordPress core - a primer
Contributing to WordPress core - a primer
 
Scalable Django Architecture
Scalable Django ArchitectureScalable Django Architecture
Scalable Django Architecture
 
SymfonyCon Madrid 2014 - Rock Solid Deployment of Symfony Apps
SymfonyCon Madrid 2014 - Rock Solid Deployment of Symfony AppsSymfonyCon Madrid 2014 - Rock Solid Deployment of Symfony Apps
SymfonyCon Madrid 2014 - Rock Solid Deployment of Symfony Apps
 
Picnic Software - Developing a flexible and scalable application
Picnic Software - Developing a flexible and scalable applicationPicnic Software - Developing a flexible and scalable application
Picnic Software - Developing a flexible and scalable application
 
Introduction to Infrastructure as Code & Automation / Introduction to Chef
Introduction to Infrastructure as Code & Automation / Introduction to ChefIntroduction to Infrastructure as Code & Automation / Introduction to Chef
Introduction to Infrastructure as Code & Automation / Introduction to Chef
 

More from Rachel Andrew

All Day Hey! Unlocking The Power of CSS Grid Layout
All Day Hey! Unlocking The Power of CSS Grid LayoutAll Day Hey! Unlocking The Power of CSS Grid Layout
All Day Hey! Unlocking The Power of CSS Grid LayoutRachel Andrew
 
SmashingConf SF: Unlocking the Power of CSS Grid Layout
SmashingConf SF: Unlocking the Power of CSS Grid LayoutSmashingConf SF: Unlocking the Power of CSS Grid Layout
SmashingConf SF: Unlocking the Power of CSS Grid LayoutRachel Andrew
 
Unlocking the Power of CSS Grid Layout
Unlocking the Power of CSS Grid LayoutUnlocking the Power of CSS Grid Layout
Unlocking the Power of CSS Grid LayoutRachel Andrew
 
The Creative New World of CSS
The Creative New World of CSSThe Creative New World of CSS
The Creative New World of CSSRachel Andrew
 
Into the Weeds of CSS Layout
Into the Weeds of CSS LayoutInto the Weeds of CSS Layout
Into the Weeds of CSS LayoutRachel Andrew
 
Solving Layout Problems with CSS Grid & Friends - DevFest17
Solving Layout Problems with CSS Grid & Friends - DevFest17Solving Layout Problems with CSS Grid & Friends - DevFest17
Solving Layout Problems with CSS Grid & Friends - DevFest17Rachel Andrew
 
View Source London: Solving Layout Problems with CSS Grid & Friends
View Source London: Solving Layout Problems with CSS Grid & FriendsView Source London: Solving Layout Problems with CSS Grid & Friends
View Source London: Solving Layout Problems with CSS Grid & FriendsRachel Andrew
 
DevFest Nantes - Start Using CSS Grid Layout today
DevFest Nantes - Start Using CSS Grid Layout todayDevFest Nantes - Start Using CSS Grid Layout today
DevFest Nantes - Start Using CSS Grid Layout todayRachel Andrew
 
Start Using CSS Grid Layout Today - RuhrJS
Start Using CSS Grid Layout Today - RuhrJSStart Using CSS Grid Layout Today - RuhrJS
Start Using CSS Grid Layout Today - RuhrJSRachel Andrew
 
404.ie: Solving Layout Problems with CSS Grid & Friends
404.ie: Solving Layout Problems with CSS Grid & Friends404.ie: Solving Layout Problems with CSS Grid & Friends
404.ie: Solving Layout Problems with CSS Grid & FriendsRachel Andrew
 
Solving Layout Problems with CSS Grid & Friends - WEBU17
Solving Layout Problems with CSS Grid & Friends - WEBU17Solving Layout Problems with CSS Grid & Friends - WEBU17
Solving Layout Problems with CSS Grid & Friends - WEBU17Rachel Andrew
 
Laying out the future with grid & flexbox - Smashing Conf Freiburg
Laying out the future with grid & flexbox - Smashing Conf FreiburgLaying out the future with grid & flexbox - Smashing Conf Freiburg
Laying out the future with grid & flexbox - Smashing Conf FreiburgRachel Andrew
 
Solving Layout Problems with CSS Grid & Friends - NordicJS
Solving Layout Problems with CSS Grid & Friends - NordicJSSolving Layout Problems with CSS Grid & Friends - NordicJS
Solving Layout Problems with CSS Grid & Friends - NordicJSRachel Andrew
 
Google Developers Experts Summit 2017 - CSS Layout
Google Developers Experts Summit 2017 - CSS Layout Google Developers Experts Summit 2017 - CSS Layout
Google Developers Experts Summit 2017 - CSS Layout Rachel Andrew
 
Web Summer Camp Keynote
Web Summer Camp KeynoteWeb Summer Camp Keynote
Web Summer Camp KeynoteRachel Andrew
 
New CSS Layout Meets the Real World
New CSS Layout Meets the Real WorldNew CSS Layout Meets the Real World
New CSS Layout Meets the Real WorldRachel Andrew
 
An Event Apart DC - New CSS Layout meets the Real World
An Event Apart DC - New CSS Layout meets the Real WorldAn Event Apart DC - New CSS Layout meets the Real World
An Event Apart DC - New CSS Layout meets the Real WorldRachel Andrew
 
Perch, Patterns and Old Browsers
Perch, Patterns and Old BrowsersPerch, Patterns and Old Browsers
Perch, Patterns and Old BrowsersRachel Andrew
 
Evergreen websites for Evergreen browsers
Evergreen websites for Evergreen browsersEvergreen websites for Evergreen browsers
Evergreen websites for Evergreen browsersRachel Andrew
 

More from Rachel Andrew (20)

All Day Hey! Unlocking The Power of CSS Grid Layout
All Day Hey! Unlocking The Power of CSS Grid LayoutAll Day Hey! Unlocking The Power of CSS Grid Layout
All Day Hey! Unlocking The Power of CSS Grid Layout
 
SmashingConf SF: Unlocking the Power of CSS Grid Layout
SmashingConf SF: Unlocking the Power of CSS Grid LayoutSmashingConf SF: Unlocking the Power of CSS Grid Layout
SmashingConf SF: Unlocking the Power of CSS Grid Layout
 
Unlocking the Power of CSS Grid Layout
Unlocking the Power of CSS Grid LayoutUnlocking the Power of CSS Grid Layout
Unlocking the Power of CSS Grid Layout
 
The Creative New World of CSS
The Creative New World of CSSThe Creative New World of CSS
The Creative New World of CSS
 
Into the Weeds of CSS Layout
Into the Weeds of CSS LayoutInto the Weeds of CSS Layout
Into the Weeds of CSS Layout
 
Solving Layout Problems with CSS Grid & Friends - DevFest17
Solving Layout Problems with CSS Grid & Friends - DevFest17Solving Layout Problems with CSS Grid & Friends - DevFest17
Solving Layout Problems with CSS Grid & Friends - DevFest17
 
Graduating to Grid
Graduating to GridGraduating to Grid
Graduating to Grid
 
View Source London: Solving Layout Problems with CSS Grid & Friends
View Source London: Solving Layout Problems with CSS Grid & FriendsView Source London: Solving Layout Problems with CSS Grid & Friends
View Source London: Solving Layout Problems with CSS Grid & Friends
 
DevFest Nantes - Start Using CSS Grid Layout today
DevFest Nantes - Start Using CSS Grid Layout todayDevFest Nantes - Start Using CSS Grid Layout today
DevFest Nantes - Start Using CSS Grid Layout today
 
Start Using CSS Grid Layout Today - RuhrJS
Start Using CSS Grid Layout Today - RuhrJSStart Using CSS Grid Layout Today - RuhrJS
Start Using CSS Grid Layout Today - RuhrJS
 
404.ie: Solving Layout Problems with CSS Grid & Friends
404.ie: Solving Layout Problems with CSS Grid & Friends404.ie: Solving Layout Problems with CSS Grid & Friends
404.ie: Solving Layout Problems with CSS Grid & Friends
 
Solving Layout Problems with CSS Grid & Friends - WEBU17
Solving Layout Problems with CSS Grid & Friends - WEBU17Solving Layout Problems with CSS Grid & Friends - WEBU17
Solving Layout Problems with CSS Grid & Friends - WEBU17
 
Laying out the future with grid & flexbox - Smashing Conf Freiburg
Laying out the future with grid & flexbox - Smashing Conf FreiburgLaying out the future with grid & flexbox - Smashing Conf Freiburg
Laying out the future with grid & flexbox - Smashing Conf Freiburg
 
Solving Layout Problems with CSS Grid & Friends - NordicJS
Solving Layout Problems with CSS Grid & Friends - NordicJSSolving Layout Problems with CSS Grid & Friends - NordicJS
Solving Layout Problems with CSS Grid & Friends - NordicJS
 
Google Developers Experts Summit 2017 - CSS Layout
Google Developers Experts Summit 2017 - CSS Layout Google Developers Experts Summit 2017 - CSS Layout
Google Developers Experts Summit 2017 - CSS Layout
 
Web Summer Camp Keynote
Web Summer Camp KeynoteWeb Summer Camp Keynote
Web Summer Camp Keynote
 
New CSS Layout Meets the Real World
New CSS Layout Meets the Real WorldNew CSS Layout Meets the Real World
New CSS Layout Meets the Real World
 
An Event Apart DC - New CSS Layout meets the Real World
An Event Apart DC - New CSS Layout meets the Real WorldAn Event Apart DC - New CSS Layout meets the Real World
An Event Apart DC - New CSS Layout meets the Real World
 
Perch, Patterns and Old Browsers
Perch, Patterns and Old BrowsersPerch, Patterns and Old Browsers
Perch, Patterns and Old Browsers
 
Evergreen websites for Evergreen browsers
Evergreen websites for Evergreen browsersEvergreen websites for Evergreen browsers
Evergreen websites for Evergreen browsers
 

Recently uploaded

SCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is prediSCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is predieusebiomeyer
 
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书rnrncn29
 
Company Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxCompany Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxMario
 
IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119APNIC
 
ETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxNIMMANAGANTI RAMAKRISHNA
 
Cybersecurity Threats and Cybersecurity Best Practices
Cybersecurity Threats and Cybersecurity Best PracticesCybersecurity Threats and Cybersecurity Best Practices
Cybersecurity Threats and Cybersecurity Best PracticesLumiverse Solutions Pvt Ltd
 
Unidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxUnidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxmibuzondetrabajo
 
TRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxTRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxAndrieCagasanAkio
 
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书rnrncn29
 

Recently uploaded (9)

SCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is prediSCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is predi
 
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
 
Company Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxCompany Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptx
 
IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119
 
ETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptx
 
Cybersecurity Threats and Cybersecurity Best Practices
Cybersecurity Threats and Cybersecurity Best PracticesCybersecurity Threats and Cybersecurity Best Practices
Cybersecurity Threats and Cybersecurity Best Practices
 
Unidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxUnidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptx
 
TRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxTRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptx
 
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
 

ConFoo 2016: Development to Deployment

  • 1. Professional Workflow From Development To Deployment • Why using FTP to move files live is a bad idea • Creating simple local dev environments for PHP • Getting your code into a remotely hosted git repository • Deploying using a deployment service A beginner level session covering:
  • 2. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Rachel Andrew http://rachelandrew.co.uk @rachelandrew http://grabaperch.com
  • 3. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Many issues coming into support stem from poor development and deployment processes.
  • 4. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy The Big Problems • Developing directly on live sites or in subfolders of live sites • Developing in subfolders locally • Setting up local development environments that are so different to the eventual live server that there is no confidence when going live • Deploying via FTP piecemeal and having sites blow up due to missing files
  • 5. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy What’s the problem with (S)FTP? • You are transferring files one by one to the server with no management of that transfer • One failed transfer can break the site • Old files may be left on the server - this could be a security risk in the case of third party software • Very hard to debug issues caused by missing files especially where they are deep in third party code
  • 6. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Improving workflow is the best way to give yourself more hours in the day.
  • 7. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy These are baby steps to improved workflow.
  • 8. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy We need … • to develop multiple websites on our own computer. • to know that our live server and local server support the same things. • to deploy our site and have confidence that what is on the live server is identical to our local version. • to allow clients to view a site in progress during initial development and also when making changes in future.
  • 9. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 10. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Working locally
  • 11. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Developing live on the server! • High chance of making a change that breaks something about the site. • No way for the client to preview changes • Local version in sync? Do we even have a local version? • If you get to the beach, you’ll be fixing a website. On your phone. Have fun with that.
  • 12. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Q. How do you deploy your sites to the server? A. We just edit on the server directly. 8%
  • 13. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Let’s develop in a subfolder! • Create a ‘newsite’ subfolder and develop the site there • Potential to make an accidental change to the live site with an FTP mishap • If the site is in a subfolder then it doesn’t replicate the live site. To go live you have to change all of your file paths. • You are not going to the beach. You are fixing up file paths. More fun!
  • 14. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy File paths and URLs are fundamental to the web. Changing them on going live is messy and fragile.
  • 15. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Developing remotely is going to be a slow way to work.
  • 16. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Mac Users - install Apache, PHP and MySQL on your machine.
  • 17. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy homebrew.sh @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 18. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy https://echo.co/blog/os-x-1010-yosemite-local-development-environment-apache-php-and-mysql-homebrew @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 19. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy MAMP, XAMPP, WAMP
  • 20. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Q. How do you develop sites locally that require a web server? A. MAMP, WAMP, XAMPP or similar 63%
  • 21. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Linux Apache MySQL PHP
  • 22. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Take your pick • Mamp - https://www.mamp.info/en/ • Wamp - http://sourceforge.net/projects/wampserver/ • Xampp - https://www.apachefriends.org • EasyPHP - http://www.easyphp.org/
  • 23. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy VirtualHosts - many websites on one server
  • 24. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Avoid creating your own local version of developing in a subfolder. Remember - we don’t want to change file paths to go live!
  • 25. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy https://www.mamp.info/en/mamp-pro/ @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 26. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Access multiple sites at client1.dev, client2.dev
  • 27. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy In an ideal world your local development environment is identical to the live server.
  • 28. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy http://php.net/manual/en/function.strftime.php @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 29. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy PHP Versions can be different. PHP modules may not be available on the live server.
  • 30. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Virtual Machines
  • 31. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy virtualbox.org @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 32. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy vagrantup.com @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 33. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy https://puphpet.com @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 34. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 35. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy https://www.smashingmagazine.com/2015/07/development-to-deployment-workflow/
  • 36. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Upload a PHP file with this function to find out what is available on your live server. <?php phpinfo();?>
  • 37. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Things to check on your live server • PHP Version • Installed modules such as gd for image processing • post_max_size and upload_max_filesize determine the size of files that can be uploaded • max_input_vars is the number of form fields allowed in a post
  • 38. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Shared Folders
  • 39. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 40. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 41. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 42. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 43. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Basic commands for Vagrant. // start the VM > vagrant up // shut down the VM > vagrant halt //destroy the VM > vagrant destroy //ssh access > vagrant ssh
  • 44. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy http://vagrantmanager.com/
  • 45. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Share your package with anyone else working on the site. The whole team can then have the exact same development setup.
  • 46. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy We need … to develop multiple websites on our own computer to know that our live server and local server support the same things to deploy our site and have confidence that what is on the live server is identical to our local version to allow clients to view a site in progress to leave work early and go to the beach.
  • 47. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 48. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy http://github.com @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 49. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy http://beanstalkapp.com
  • 50. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy If you already have files you need to add to a git repository. cd my-git-repo git remote add beanstalk git@accountname.beanstalkapp.com:/gitreponame.git git push beanstalk
  • 51. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy If you are starting a new project. git clone https://accountname.git.beanstalkapp.com/ gitreponame.git -o beanstalk cd gitreponame echo "This is my new project on Beanstalk." > README git add README git commit -m "My first commit." git push beanstalk master
  • 52. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy www.git-tower.com
  • 53. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy www.git-tower.com/learn/ebook
  • 54. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Tomorrow at 2pm: Practical Git for Developers
  • 55. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy A branch is a version of your site. We are deploying the master branch to live.
  • 56. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Production refers to your live site. Staging a site where changes are tested and previewed.
  • 57. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy We make a change to our files, commit and push them to Beanstalk. The Master Branch now contains only what should be deployed.
  • 58. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Deploy all the things
  • 59. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Deployment with Beanstalk • Deployments can be Manual or Automatic • Automatic deployments happen when code is pushed to the branch you are deploying • Manual deployments are triggered by you at Beanstalk once you are happy to go live • Once a deploy happens Beanstalk makes sure the code on the live site matches that in Git, removing deleted files, replacing modified ones and adding new files
  • 60. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 61. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 62. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy On Deploy • Beanstalk connects to your server • ensures that the files on the server match the files in the branch you are deploying • on initial deploy all existing files on the server have to be checked. Your first deploy will be slow! • subsequent deploys only change things that have changed in git.
  • 63. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Deployment Tips
  • 64. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Create multiple server configuration files
  • 65. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy http://solutions.grabaperch.com/development/multiple-server-config
  • 66. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Use .gitignore to keep things out of Beanstalk
  • 67. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy https://github.com/github/gitignore
  • 68. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 69. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 70. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Our new workflow. 1. Edit files as usual on your computer 2. View your site via a web server on that computer 3. Commit changes to Git 4. Push to Beanstalk 5. Login to Beanstalk and hit Deploy 6. Go to the beach.
  • 71. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Databases and Uploaded Assets
  • 72. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Add CMS managed asset folders to a .gitignore file so they are not committed
  • 73. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Use a CDN for assets if your CMS enables it. Faster download speeds with bonus ease of management across environments.
  • 74. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Initial deploy to live also involves an export and import of the MySQL database.
  • 75. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy How to deal with schema or even data changes on an existing site?
  • 76. How do you manage database changes between development and live? “try to keep live db current, and keep list of changes in settings on dev environment. this is the one thing that needs a better solution in my development workflow, esp. when working together with other developers on one project.” @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 77. How do you manage database changes between development and live? “Labour intensively. Save a dump of the live version. Then compare the structure of the development and live structures in a diff checker. Finally make the updates required on the live version, importing the new data. ” @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy
  • 78. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Create a Maintenance Window where no changes are made to live.
  • 79. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy https://deliciousbrains.com/wp-migrate-db-pro/
  • 80. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy http://www.navicat.com/products/navicat-for-mysql
  • 81. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy We need … to develop multiple websites on our own computer to know that our live server and local server support the same things to deploy our site and have confidence that what is on the live server is identical to our local version to allow clients to view a site in progress to leave work early and go to the beach.
  • 82. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy A Staging Server
  • 83. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Using an inexpensive VPS you can create sites at clientname.yourcompany.com for preview.
  • 84. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy You can deploy the master branch to staging to check before deploying to production.
  • 85. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Even better, you can use your staging server to deploy commits to a staging branch.
  • 86. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Deploy with a tag to any commit or push comment. For example: [Deploy: Staging]
  • 87. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Try to keep your Master branch deployable to live. If disaster strikes you can redeploy.
  • 88. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Remember to backup your database and any resources regularly!
  • 89. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Logging in and downloading the assets when you remember is not a backup strategy.
  • 90. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Bonus feature! We can now easily switch hosting if our current host becomes unreliable.
  • 91. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Unsolved problems
  • 92. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy There are product opportunities in helping people in shared PHP hosting land navigate these issues.
  • 93. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Pre and post-processed CSS and JavaScript files.
  • 94. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Backup of CMS-managed resources
  • 95. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Database migrations
  • 96. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy We can … develop multiple websites on our own computer know that our live server and local server support the same things deploy our site and have confidence that what is on the live server is identical to our local version allow clients to view a site in progress leave work early and go to the beach.
  • 97. @rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy@rachelandrew | Read more at http://rachelandrew.co.uk/presentations/deploy Thank you! Slides & resources at: http://rachelandrew.co.uk/presentations/deploy @rachelandrew