Created
June 14, 2014 21:38
-
-
Save liorkesos/1f4e00d2e4910b8ef073 to your computer and use it in GitHub Desktop.
Package structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
├── 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