Constants - best practice

Where do you put your constants and why?

I’m currently putting mine at the App level.

Thanks for your input!

I put as little as possible in the APP object.
Application level (Global) constants are defined in a MODULE
Constants that are Private to a CLASS are define in the Class

Basically I keep Constants, and other attributes as close to the scope level in which they are to be used.