How to debug julia code in Genie framework

I Learn how to debug normal julia code with Debugger.jl package and @enter macros now i want to debug julia code inside the genie framework. please help me

I usually thoroughly debug/test my non-Genie code before starting to implement the Genie routes.

Please notice that your Genie app can be started using the dev environment - which will produce detailed logs when errors are encountered: in my experience, that is enough to track things down and isolate/fix the error (again - provided that the non-Genie/upstream code is bug-free).

If you want to debug Genie-related code/routes in an interactive way using Debugger.jl, you can consider running Genie in an interactive environment as shown here.