### Redisson Configuration File Example Source: https://github.com/axelor/axelor-open-platform/blob/main/documentation/modules/dev-guide/pages/application/config.adoc An example YAML file for configuring Redisson client settings. ```yaml singleServerConfig: address: "redis://127.0.0.1:6379" idleConnectionTimeout: 10000 connectTimeout: 10000 timeout: 3000 retryAttempts: 3 retryInterval: 1500 threads: 16 nettyThreads: 32 codec: ! {} ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/axelor/axelor-open-platform/blob/main/axelor-front/README.md Installs all necessary project dependencies using pnpm. This command should be run from the project's root directory. ```bash pnpm install ``` -------------------------------- ### Complete Grid View Example Source: https://github.com/axelor/axelor-open-platform/blob/main/documentation/modules/dev-guide/pages/views/grid.adoc An example demonstrating a complete grid configuration, including toolbar buttons, menubar items, field definitions with conditional highlighting, and inline actions. ```xml