Jump To …

$app$.coffee

tools/templates/app/
class $App$ extends Batman.App
  @set 'mission', 'fight crime'
  

Make $App$ available in the global namespace so it can be used as a namespace and bound to in views.

  @global yes

Source the AppController and set the root route to AppController#index.

  @controller 'app'
  @root 'app#index'

batman.js