| 1 | = EdenMobile Directory Structure = |
| 2 | |
| 3 | {{{ |
| 4 | www |
| 5 | | |
| 6 | +- index.html the main view |
| 7 | +- index.js top-level script to initialize the cordova app and create the EdenMobile main module (AngularJS) |
| 8 | | |
| 9 | +--- config files concerning the app configuration such as routing, DB schema, default settings |
| 10 | | | |
| 11 | | +- routing.js state routing |
| 12 | | +- schema.js default database schema (to bootstrap the database) |
| 13 | | +- settings.js definition of config settings incl. defaults |
| 14 | | |
| 15 | +--- controllers controllers |
| 16 | | |
| 17 | +--- views view templates |
| 18 | | |
| 19 | +--- services services |
| 20 | | |
| 21 | +--- directives directives |
| 22 | | |
| 23 | +--- i18n language files |
| 24 | | |
| 25 | +--- img images |
| 26 | | |
| 27 | +--- styles CSS stylesheets |
| 28 | | |
| 29 | +--- vendor 3rd party modules (e.g. AngularJS) |
| 30 | }}} |