Changes between Initial Version and Version 1 of DeveloperGuidelines/EdenMobile/Directories


Ignore:
Timestamp:
10/12/16 07:22:41 (8 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/EdenMobile/Directories

    v1 v1  
     1= EdenMobile Directory Structure =
     2
     3{{{
     4www
     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}}}