ProxyPrint is a platform where both printshops and regular consumer can use. In other words, one has access (within ProxyPrint) to all printshops registered there, which means one's not only able to make requests online (having to collect them phisically afterwards) but can also compare the cost of his printing request across all printshops.
This is the front-end's page - ProxyPrint-bar! It's written in Angular and communicates with ProxyPrint-kitchen - its back-end (Spring Boot).
#####Angular naming conventions We're following this guide's naming convention for the Angular-related elements:
| Element | Naming style | Example | usage |
|---|---|---|---|
| Modules | lowerCamelCase | angularApp | |
| Controllers | Functionality + 'Ctrl' | AdminCtrl | |
| Directives | lowerCamelCase | userInfo | |
| Filters | lowerCamelCase | userFilter | |
| Services | lowerCamelCase | User | constructor |
| Factories | lowerCamelCase | dataFactory | others |
