lunchApp = angular.module 'lunchApp', [ 'ngRoute', 'lunchControllers' ] lunchApp.config ['$routeProvider', ($routeProvider) -> $routeProvider .when '/runs', templateUrl: 'templates/runs.html', controller: 'RunsCtrl' .otherwise redirectTo: '/runs' ]