Outlines steps to getting Ember up and running in development with Middleman and deploying to Heroku.
CREATE AND DEPLOYYOUR EMBER APPIN 5 MINwith Middleman and Heroku
View Slide
INTRORoss Kaffenbergerrosskaff.com@rosstaChallengePost
OVERVIEWFront-end AppDevelop on MiddlemanDeploy on Heroku
MIDDLEMANStatic site generatorModern web toolshttp://middlemanapp.com
TOOLSInstallCommand Line$ gem install middleman$ middleman init my_new_project$ middleman server$ middleman build
RACKconfig.rbactivate :livereloadset :js_dir, "javascripts"configure :build doactivate :minify_javascriptactivate :asset_hashend
ASSET PIPELINESprockets//= require jquery//= require handlebars//= require ember//= require ember-data//= require ./mainApp.initialize();
ASSET PIPELINECompilationsource/index.hamlstylesheets/application.css.scssjavascripts/application.js.coffee
PROJECT TEMPLATES$ git clone git://github.com/rossta/middleman-ember-template.git ~/.middleman/ember$ middleman init my_new_project --template=ember$ middleman server
DEPLOYHeroku Buildpacks$ heroku create my_app --buildpack git://github.com/indirect/heroku-buildpack-middleman.git$ git push heroku master
RESOURCEShttp://middlemanapp.com/https://devcenter.heroku.com/articles/buildpackshttps://github.com/rossta/middleman-ember-templatehttps://github.com/indirect/heroku-buildpack-middlemanhttp://rossta-ember-example.herokuapp.com
FINRoss Kaffenbergerrosskaff.com@rossta