Skip to content

Instantly share code, notes, and snippets.

@pierot
Created February 7, 2013 07:50
Show Gist options
  • Save pierot/4729314 to your computer and use it in GitHub Desktop.
Save pierot/4729314 to your computer and use it in GitHub Desktop.
backbone, requirejs, tree structure
assets
├── coffee
│   ├── build.coffee
│   ├── config.coffee
│   ├── helpers
│   │   └── template-loader.coffee
│   ├── main.coffee
│   ├── models
│   │   └── base.coffee
│   ├── router.coffee
│   └── views
│   ├── app.coffee
│   ├── base.coffee
│   └── detail.coffee
├── css
│   ├── bootstrap.css
│   ├── style.css
│   └── style.sass
├── img
│   └── favicon.ico
├── js
│   ├── app.js
│   ├── build.js
│   ├── config.js
│   ├── helpers
│   │   └── template-loader.js
│   ├── main.js
│   ├── main.min.js
│   ├── models
│   │   └── base.js
│   ├── router.js
│   ├── vendor
│   │   ├── backbone.js
│   │   ├── handlebars.js
│   │   ├── handlebars.runtime.js
│   │   ├── jquery.js
│   │   ├── lodash.js
│   │   └── require.js
│   └── views
│   ├── app.js
│   ├── base.js
│   └── detail.js
└── templates
├── app.handlebars
└── detail.handlebars
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment