Contribute 
Code of conduct 
To be continued.
Coding styles 
tbc.
Conventions 
Note
This article is outdated and may contain information that is no longer in use
Route name 
- Don't use camel case, use underscore instead
 
For example, if you have a bundle called enhavoAppBundle, and an action called index, then you should name your route like this: enhavo_app_index. A route should contain the following information divided by an underscore:
- Company name
 - Bundle name
 - Entity name (optional)
 - Action name
 
Bundle 
- One menu is one app
 - One app should be one Bundle
 - Only in the Project Bundle can you add more than one app
 
Testing 
tbc.