-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Milestone
Description
What do you guys think about this Folders-by-Feature Project Structure? Based on https://github.com/johnpapa/angular-styleguide#folders-by-feature-structure
www
├── app.module.js
├── app.config.js
├── index.html
├── img
│ └── ionic.png
├── css
│ ├── ionic.app.css
│ └── style.css
├── scss
│ ├── ionic.app.scss
│ └── style.scss
├── vendor
│ ├── ionic
│ ├── angular
│ └── angular-ui-router
├── components
│ └── calendar
│ ├── calendar.directive.js
│ └── calendar.directive.html
├── modules
│ └── states
│ │ ├── home
│ │ │ ├── home.controller.js
│ │ │ ├── home.config.js
│ │ │ └── home.html
│ │ └── playlists
│ │ ├── playlists.controller.js
│ │ ├── playlists.config.js
│ │ └── playlists.html
...
Reactions are currently unavailable