OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/frontend/doc/OVERVIEW.md

64 lines
1.7 KiB

Development overview
====================
This should give an idea about the contents of the `./frontend` folder.
This is the general structure (:
```
├── app
   ├── api
   ├── assets
   ├── config
   ├── helpers
   ├── layout
     └── controllers
   ├── messages
     └── controllers
   ├── misc
   ├── models
   ├── services
   ├── templates
     ├── components
     ├── layout
     ├── timelines
     └── work_packages
   ├── time_entries
     └── controllers
   ├── timelines
     ├── controllers
     ├── directives
     ├── helpers
     ├── models
     └── services
   ├── [ 12K] ui_components
     ├── date
     └── filters
   └── work_packages
   ├── config
   ├── controllers
   ├── directives
   ├── filters
   ├── helpers
   ├── models
   ├── services
   ├── tabs
   └── view_models
├── doc
├── public
   └── assets
   └── css
├── scripts
└── tests
   ├── integration
     ├── mocks
     ├── pages
     └── specs
   └── unit
   ├── factories
   ├── lib
   ├── mocks
   ├── reports
   └── tests
```