IRQ Interrupt Handling in R5 GIC port

Hi All

I am using R5 GIC port files. The use case for me is to install handler for other hardware interrupts. So is it okay to install it in vApplicationIRQHandler() function inside FreeRTOS_tick_config.c ?

vApplicationIRQHandler() is called when an interrupt occurs - so it is not a good place to install other interrupts. Why not just install the interrupt handlers from main(), or the first task that starts?