Last active
October 9, 2015 20:16
-
-
Save zimme/b1e8fb5dccde14990a56 to your computer and use it in GitHub Desktop.
Meteor project 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 | |
| ├── addresses | |
| │ └── lib | |
| │ ├── collections.coffee | |
| │ └── schemas.coffee | |
| ├── client | |
| │ ├── config | |
| │ │ ├── bootstrap-growl.coffee | |
| │ │ └── bootstrap-growl.less | |
| │ ├── docs.css | |
| ├── comments | |
| │ └── lib | |
| │ ├── collections.coffee | |
| │ └── schemas.coffee | |
| ├── customers | |
| │ ├── edit | |
| │ │ ├── client | |
| │ │ │ ├── edit.coffee | |
| │ │ │ └── edit.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── lib | |
| │ │ ├── collections.coffee | |
| │ │ └── schemas.coffee | |
| │ ├── list | |
| │ │ ├── client | |
| │ │ │ ├── list.coffee | |
| │ │ │ └── list.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── new | |
| │ │ ├── client | |
| │ │ │ ├── new.coffee | |
| │ │ │ └── new.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── server | |
| │ │ ├── indexes.coffee | |
| │ │ └── publications.coffee | |
| │ └── show | |
| │ ├── client | |
| │ │ ├── address.coffee | |
| │ │ ├── addresses.html | |
| │ │ ├── buttons.coffee | |
| │ │ ├── buttons.html | |
| │ │ ├── dashboard.coffee | |
| │ │ ├── dashboard.html | |
| │ │ ├── invoices.html | |
| │ │ ├── layout.html | |
| │ │ ├── subscriptions.html | |
| │ │ ├── summary.html | |
| │ │ └── workorders.html | |
| │ └── lib | |
| │ └── router.coffee | |
| ├── home | |
| │ ├── client | |
| │ │ ├── dashboard.coffee | |
| │ │ ├── dashboard.html | |
| │ │ ├── home.coffee | |
| │ │ └── home.html | |
| │ ├── lib | |
| │ │ └── router.coffee | |
| │ └── server | |
| │ └── publications.coffee | |
| ├── invoices | |
| │ ├── edit | |
| │ │ ├── client | |
| │ │ │ ├── edit.coffee | |
| │ │ │ └── edit.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── lib | |
| │ │ ├── collections.coffee | |
| │ │ └── schemas.coffee | |
| │ ├── list | |
| │ │ ├── client | |
| │ │ │ ├── list.coffee | |
| │ │ │ └── list.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── new | |
| │ │ ├── client | |
| │ │ │ ├── new.coffee | |
| │ │ │ └── new.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── server | |
| │ │ └── publications.coffee | |
| │ └── show | |
| │ ├── client | |
| │ │ └── show.html | |
| │ └── lib | |
| │ └── router.coffee | |
| ├── layouts | |
| │ └── client | |
| │ ├── main.html | |
| │ └── nonav.html | |
| ├── lib | |
| │ ├── configs | |
| │ │ ├── collections.coffee | |
| │ │ ├── router.coffee | |
| │ │ └── schemas.coffee | |
| │ └── less | |
| │ ├── connectionbanner.less | |
| │ ├── nprogress.less | |
| │ └── packages.less | |
| ├── modal | |
| │ └── client | |
| │ ├── layout.coffee | |
| │ └── layout.html | |
| ├── navbars | |
| │ └── client | |
| │ ├── menubar.coffee | |
| │ ├── menubar.html | |
| │ ├── navbarbottom.html | |
| │ ├── navbarheader.html | |
| │ ├── navbartop.html | |
| │ └── searchbar.html | |
| ├── notfound | |
| │ └── client | |
| │ └── notfound.html | |
| ├── orgs | |
| │ ├── choose | |
| │ │ ├── client | |
| │ │ │ ├── choose.coffee | |
| │ │ │ └── choose.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── lib | |
| │ │ └── collections.coffee | |
| │ ├── list | |
| │ │ ├── client | |
| │ │ │ ├── item.less | |
| │ │ │ ├── list.coffee | |
| │ │ │ └── list.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── server | |
| │ │ └── publications.coffee | |
| │ └── show | |
| │ ├── client | |
| │ │ ├── show.coffee | |
| │ │ ├── show.html | |
| │ │ └── show.less | |
| │ └── lib | |
| │ └── router.coffee | |
| ├── packages | |
| │ ├── schemas | |
| │ │ ├── helpers.coffee | |
| │ │ ├── package.js | |
| │ │ ├── schemas.coffee | |
| │ │ └── versions.json | |
| │ └── validators | |
| │ ├── package.js | |
| │ ├── simple-schema.coffee | |
| │ ├── validators.coffee | |
| │ └── versions.json | |
| ├── products | |
| │ ├── edit | |
| │ │ ├── client | |
| │ │ │ ├── edit.coffee | |
| │ │ │ └── edit.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── lib | |
| │ │ ├── collections.coffee | |
| │ │ └── schemas.coffee | |
| │ ├── list | |
| │ │ ├── client | |
| │ │ │ ├── list.coffee | |
| │ │ │ └── list.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── new | |
| │ │ ├── client | |
| │ │ │ ├── new.coffee | |
| │ │ │ └── new.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ └── server | |
| │ └── publications.coffee | |
| ├── profiles | |
| │ └── choose | |
| │ ├── client | |
| │ │ ├── chooseprofile.coffee | |
| │ │ └── chooseprofile.html | |
| │ └── lib | |
| │ └── router.coffee | |
| ├── public | |
| │ ├── fontawesome | |
| │ │ ├── FontAwesome.otf | |
| │ │ ├── fontawesome-webfont.eot | |
| │ │ ├── fontawesome-webfont.svg | |
| │ │ ├── fontawesome-webfont.ttf | |
| │ │ └── fontawesome-webfont.woff | |
| │ ├── fonts | |
| │ │ ├── glyphicons-halflings-regular.eot | |
| │ │ ├── glyphicons-halflings-regular.svg | |
| │ │ ├── glyphicons-halflings-regular.ttf | |
| │ │ └── glyphicons-halflings-regular.woff | |
| │ ├── img | |
| │ │ ├── all-devices-grey.png | |
| │ │ └── easy-start.png | |
| │ └── video | |
| │ ├── ocean.jpg | |
| │ ├── ocean.mp4 | |
| │ ├── ocean.ogv | |
| │ └── ocean.webm | |
| ├── server | |
| │ ├── config | |
| │ │ ├── kadira.coffee | |
| │ │ └── mandrill.coffee | |
| │ └── seed.coffee | |
| ├── subscriptions | |
| │ ├── edit | |
| │ │ ├── client | |
| │ │ │ ├── edit.coffee | |
| │ │ │ └── edit.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── lib | |
| │ │ ├── collections.coffee | |
| │ │ └── schemas.coffee | |
| │ ├── list | |
| │ │ ├── client | |
| │ │ │ ├── list.coffee | |
| │ │ │ └── list.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── new | |
| │ │ ├── client | |
| │ │ │ ├── new.coffee | |
| │ │ │ └── new.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── server | |
| │ │ └── publications.coffee | |
| │ └── show | |
| │ ├── client | |
| │ │ └── show.html | |
| │ └── lib | |
| │ └── router.coffee | |
| ├── users | |
| │ ├── edit | |
| │ │ ├── client | |
| │ │ │ ├── edit.coffee | |
| │ │ │ └── edit.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── enroll | |
| │ │ ├── lib | |
| │ │ │ └── router.coffee | |
| │ │ └── server | |
| │ │ └── enroll.coffee | |
| │ ├── forgot | |
| │ │ ├── client | |
| │ │ │ ├── forgot.coffee | |
| │ │ │ └── forgot.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── lib | |
| │ │ ├── collections.coffee | |
| │ │ └── schemas.coffee | |
| │ ├── list | |
| │ │ ├── client | |
| │ │ │ ├── list.coffee | |
| │ │ │ └── list.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── login | |
| │ │ ├── client | |
| │ │ │ ├── login.coffee | |
| │ │ │ └── login.html | |
| │ │ ├── lib | |
| │ │ │ ├── router.coffee | |
| │ │ │ └── schemas.coffee | |
| │ │ └── server | |
| │ │ └── validatelogin.coffee | |
| │ ├── logout | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── new | |
| │ │ ├── client | |
| │ │ │ ├── newuser.coffee | |
| │ │ │ └── newuser.html | |
| │ │ ├── lib | |
| │ │ │ ├── router.coffee | |
| │ │ │ └── schemas.coffee | |
| │ │ └── server | |
| │ │ ├── methods.coffee | |
| │ │ └── oncreateuser.coffee | |
| │ ├── profile | |
| │ │ ├── client | |
| │ │ │ └── profile.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── reset | |
| │ │ ├── client | |
| │ │ │ ├── reset.coffee | |
| │ │ │ └── reset.html | |
| │ │ ├── lib | |
| │ │ │ └── router.coffee | |
| │ │ └── server | |
| │ │ └── reset.coffee | |
| │ ├── server | |
| │ │ ├── indexes.coffee | |
| │ │ ├── methods.coffee | |
| │ │ └── publications.coffee | |
| │ ├── show | |
| │ │ ├── client | |
| │ │ │ ├── buttons.coffee | |
| │ │ │ ├── buttons.html | |
| │ │ │ ├── dashboard.coffee | |
| │ │ │ ├── dashboard.html | |
| │ │ │ ├── layout.html | |
| │ │ │ ├── summary.html | |
| │ │ │ └── workorders.html | |
| │ │ └── lib | |
| │ │ └── router.coffee | |
| │ ├── userbar | |
| │ │ └── client | |
| │ │ ├── userbar.coffee | |
| │ │ └── userbar.html | |
| │ └── verify | |
| │ ├── lib | |
| │ │ └── router.coffee | |
| │ └── server | |
| │ ├── methods.coffee | |
| │ └── verify.coffee | |
| └── workorders | |
| ├── edit | |
| │ ├── client | |
| │ │ ├── edit.coffee | |
| │ │ └── edit.html | |
| │ └── lib | |
| │ └── router.coffee | |
| ├── lib | |
| │ ├── collections.coffee | |
| │ └── schemas.coffee | |
| ├── list | |
| │ ├── client | |
| │ │ ├── list.html | |
| │ │ ├── table.coffee | |
| │ │ └── table.html | |
| │ └── lib | |
| │ └── router.coffee | |
| ├── new | |
| │ ├── client | |
| │ │ ├── new.coffee | |
| │ │ └── new.html | |
| │ └── lib | |
| │ └── router.coffee | |
| ├── server | |
| │ └── publications.coffee | |
| └── show | |
| ├── client | |
| │ └── show.html | |
| └── lib | |
| └── router.coffee |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment