Skip to content

Instantly share code, notes, and snippets.

@deedubs
Created September 27, 2013 17:04
Show Gist options
  • Save deedubs/6731748 to your computer and use it in GitHub Desktop.
Save deedubs/6731748 to your computer and use it in GitHub Desktop.
.
├── Gruntfile.js
├── Procfile
├── README.md
├── env.example
├── gist
├── hapi.json
├── lib
│   ├── api
│   │   └── entries
│   │   ├── README.md
│   │   ├── handlers.js
│   │   ├── index.js
│   │   └── package.json
│   ├── index.js
│   ├── models
│   │   ├── README.md
│   │   ├── index.js
│   │   ├── organization.js
│   │   ├── plugins
│   │   │   └── validator.js
│   │   └── user.js
│   ├── utils
│   │   ├── index.js
│   │   └── package.json
│   └── web
│   ├── README.md
│   ├── component.json
│   ├── handlers.js
│   ├── index.js
│   ├── lib
│   │   ├── entries
│   │   │   ├── component.json
│   │   │   ├── controllers
│   │   │   ├── index.js
│   │   │   └── views
│   │   ├── home
│   │   │   ├── component.json
│   │   │   ├── controllers
│   │   │   │   └── index.js
│   │   │   ├── index.js
│   │   │   └── views
│   │   │   ├── index.jade
│   │   │   └── login.jade
│   │   ├── index.js
│   │   ├── lists
│   │   │   ├── component.json
│   │   │   ├── controllers
│   │   │   ├── index.js
│   │   │   └── views
│   │   └── users
│   │   ├── component.json
│   │   ├── controllers
│   │   ├── index.js
│   │   └── views
│   ├── package.json
│   ├── public
│   │   ├── assets
│   │   │   ├── images
│   │   │   │   ├── logo.png
│   │   │   │   └── map.jpg
│   │   │   ├── scripts
│   │   │   │   ├── dropdown.js
│   │   │   │   └── jquery.js
│   │   │   └── style
│   │   │   ├── _colors.styl
│   │   │   ├── _layout.styl
│   │   │   ├── _reset.styl
│   │   │   ├── _settings.styl
│   │   │   ├── adaptive.styl
│   │   │   ├── forms.styl
│   │   │   ├── main.styl
│   │   │   └── widget.styl
│   │   ├── css
│   │   │   └── socialscape.css
│   │   ├── socialscape.css
│   │   └── socialscape.js
│   └── views
│   └── index.jade
├── package.json
└── test
├── fixtures
│   ├── index.js
│   └── public
│   └── hello.html
├── index.js
├── integration
│   └── web.js
├── mocha.opts
└── unit
├── organization.js
└── user.js
32 directories, 59 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment