Skip to content

Instantly share code, notes, and snippets.

@liorkesos
Created June 14, 2014 21:38
Show Gist options
  • Save liorkesos/1f4e00d2e4910b8ef073 to your computer and use it in GitHub Desktop.
Save liorkesos/1f4e00d2e4910b8ef073 to your computer and use it in GitHub Desktop.
Package structure
├── README.md
├── app.js
├── package.json
├── public
│   ├── assets
│   │   ├── css
│   │   │   └── sonar.css
│   │   └── img
│   │   └── logo.png
│   ├── controllers
│   │   └── sonar.js
│   ├── routes
│   │   └── sonar.js
│   ├── services
│   │   └── sonar.js
│   └── views
│   └── index.html
└── server
├── config
├── controllers
│   └── sonar.js
├── models
│   └── installation.js
├── routes
│   └── sonar.js
└── views
└── index.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment