Averos Config

While working with averos, additional application context parameters could be included depending on the business implementation logic. Those context parameters are depicted by the interface FrameworkConfiguration. All custom additional context parameters should imlement this interface.
This core module customization capability opens the door to extreme resiliency and modularity when working with averos framework.

AverosConfig is one implementation of FrameworkConfiguration that declares a list of supported languages. This list could be updated either manually or using the averos translation workflows ng g @wiforge/averos:add-language.

The list of environments variables is not fully exhaustive and could be updated as needed.

export class AverosConfig implements FrameworkConfiguration {
                  
        supportedLanguages?: string[];
}
  • supportedLanguages: refers to the list of supported languages. This list could be updated as needed using the available averos translation workflow.