My site requires the user to be logged in via onRequestStart() in Application.cfc. Then there is the registration folder, which has an Application.cfc that extends ApplicationProxy.cfc which extends the root Application.cfc. This way the registration folder doesn't require the user to be logged in.
My problem is that the path on my dev server is different than the path on the production server. So now my code is out of sync between dev and production because dev extends "clientname.components.ApplicationProxy" while production extends only "components.ApplicationProxy".
/Application.cfc
/components/ApplicationProxy.cfc extends Application
/Registration/Application.cfc extends ApplicationProxy