Upgrade to Pro — share decks privately, control downloads, hide ads and more …

The Care & Feeding Of A Robot

The Care & Feeding Of A Robot

Behind the scenes journey of building a large scale application. This presentation at the Laravel Conference - Laracon 2013

Eric Barnes

February 24, 2013
Tweet

Other Decks in Programming

Transcript

  1. <html> <head> <title> @yield('title') </title> </head> <body> @yield('content') </body> </html>

    @layout('layout') @section('title') Home Page @endsection @section('content') <h1>Home</h1> @endsection Layout.blade Home.blade Sunday, February 24, 13
  2. “Investing in design for your product is the most important

    thing you can do. - Ryan Lefevre Sunday, February 24, 13
  3. import os, getpass, random, hipchat from fabric.api import * from

    fabric.contrib.files import exists Fabfile.py env.roledefs = { 'production': ['[email protected]'], 'development': ['[email protected]'] } @roles('production') def prod(): run('git pull origin master') run('php artisan deploy_notify') notify("production") print random.choice(messages) Sunday, February 24, 13
  4. import os, getpass, random, hipchat from fabric.api import * from

    fabric.contrib.files import exists Fabfile.py env.roledefs = { 'production': ['[email protected]'], 'development': ['[email protected]'] } @roles('production') def prod(): run('git pull origin master') run('php artisan deploy_notify') notify("production") print random.choice(messages) Sunday, February 24, 13
  5. import os, getpass, random, hipchat from fabric.api import * from

    fabric.contrib.files import exists Fabfile.py env.roledefs = { 'production': ['[email protected]'], 'development': ['[email protected]'] } @roles('production') def prod(): run('git pull origin master') run('php artisan deploy_notify') notify("production") print random.choice(messages) Sunday, February 24, 13
  6. import os, getpass, random, hipchat from fabric.api import * from

    fabric.contrib.files import exists Fabfile.py env.roledefs = { 'production': ['[email protected]'], 'development': ['[email protected]'] } @roles('production') def prod(): run('git pull origin master') run('php artisan deploy_notify') notify("production") print random.choice(messages) Sunday, February 24, 13
  7. A A Q Does the magic > fab prod Notify

    Sunday, February 24, 13