error trying to use modules

error message
Error including config file: Error loading module routes as the
moduel requested 'regflow' is not loaded. The loaded modules are:
[{RAW_TRACE={ at cfFrameworkSupertype2ecfc1363151671$func
$THROW.runFunction(/workspace/iplan/lib/org/coldbox/system/
FrameworkSupertype.cfc:415)},ID={CFTHROW},TEMPLATE={/workspace/iplan/
lib/org/coldbox/system/
FrameworkSupertype.cfc},LINE={415},TYPE={CFML},COLUMN={0}},
{RAW_TRACE={ at cfSES2ecfc2140436577$funcADDMODULEROUTES.runFunction(/
workspace/iplan/lib/org/coldbox/system/interceptors/SES.cfc:
148)},ID={CF_UDFMETHOD},TEMPLATE={/workspace/iplan/lib/org/coldbox/
system/interceptors/SES.cfc},LINE={148},TYPE={CFML},COLUMN={0}},
{RAW_TRACE={ at cfroutes2ecfm155122876.runPage(/workspace/iplan/config/
routes.cfm:17)},ID={CF_UDFMETHOD},TEMPLATE={/workspace/iplan/config/
routes.cfm},LINE={17},TYPE={CFML},COLUMN={0}}, {RAW_TRACE={ at
cfdev_routes2ecfm828903753.runPage(/workspace/iplan/config/
environments/dev_routes.cfm:1)},ID={CFINCLUDE},TEMPLATE={/workspace/
iplan/config/environments/
dev_routes.cfm},LINE={1},TYPE={CFML},COLUMN={0}}, {RAW_TRACE={ at
cfFrameworkSupertype2ecfc1363151671$func$INCLUDE.runFunction(/
workspace/iplan/lib/org/coldbox/system/FrameworkSupertype.cfc:
440)},ID={CFINCLUDE},TEMPLATE={/workspace/iplan/lib/org/coldbox/system/
FrameworkSupertype.cfc},LINE={440},TYPE={CFML},COLUMN={0}},
{RAW_TRACE={ at
cfSES2ecfc2140436577$funcIMPORTCONFIGURATION.runFunction(/workspace/
iplan/lib/org/coldbox/system/interceptors/SES.cfc:
874)},ID={CF_UDFMETHOD},TEMPLATE={/workspace/iplan/lib/org/coldbox/
system/interceptors/SES.cfc},LINE={874},TYPE={CFML},COLUMN={0}},
{RAW_TRACE={ at cfSES2ecfc2140436577$funcCONFIGURE.runFunction(/
workspace/iplan/lib/org/coldbox/system/interceptors/SES.cfc:
37)},ID={CF_UDFMETHOD},TEMPLATE={/workspace/iplan/lib/org/coldbox/
system/interceptors/SES.cfc},LINE={37},TYPE={CFML},COLUMN={0}},
{RAW_TRACE={ at
cfInterceptorService2ecfc1724994168$funcREGISTERINTERCEPTOR.runFunction(/
workspace/iplan/lib/org/coldbox/system/services/InterceptorService.cfc:
156)},ID={CF_TEMPLATEPROXY},TEMPLATE={/workspace/iplan/lib/org/coldbox/
system/services/
InterceptorService.cfc},LINE={156},TYPE={CFML},COLUMN={0}},
{RAW_TRACE={ at
cfInterceptorService2ecfc1724994168$funcREGISTERINTERCEPTORS.runFunction(/
workspace/iplan/lib/org/coldbox/system/services/InterceptorService.cfc:
70)},ID={CF_UDFMETHOD},TEMPLATE={/workspace/iplan/lib/org/coldbox/
system/services/
InterceptorService.cfc},LINE={70},TYPE={CFML},COLUMN={0}},
{RAW_TRACE={ at
cfInterceptorService2ecfc1724994168$funcONCONFIGURATIONLOAD.runFunction(/
workspace/iplan/lib/org/coldbox/system/services/InterceptorService.cfc:
44)},ID={CF_UDFMETHOD},TEMPLATE={/workspace/iplan/lib/org/coldbox/
system/services/
InterceptorService.cfc},LINE={44},TYPE={CFML},COLUMN={0}},
{RAW_TRACE={ at
cfLoaderService2ecfc369033006$funcLOADAPPLICATION.runFunction(/
workspace/iplan/lib/org/coldbox/system/services/LoaderService.cfc:
81)},ID={CF_TEMPLATEPROXY},TEMPLATE={/workspace/iplan/lib/org/coldbox/
system/services/LoaderService.cfc},LINE={81},TYPE={CFML},COLUMN={0}},
{RAW_TRACE={ at cfColdbox2ecfc1229529869$funcLOADCOLDBOX.runFunction(/
workspace/iplan/lib/org/coldbox/system/Coldbox.cfc:
71)},ID={CF_TEMPLATEPROXY},TEMPLATE={/workspace/iplan/lib/org/coldbox/
system/Coldbox.cfc},LINE={71},TYPE={CFML},COLUMN={0}}, {RAW_TRACE={ at
cfColdbox2ecfc1229529869$funcRELOADCHECKS.runFunction(/workspace/iplan/
lib/org/coldbox/system/Coldbox.cfc:98)},ID={CF_UDFMETHOD},TEMPLATE={/
workspace/iplan/lib/org/coldbox/system/
Coldbox.cfc},LINE={98},TYPE={CFML},COLUMN={0}}, {RAW_TRACE={ at
cfApplication2ecfc1880454157$funcONREQUESTSTART.runFunction(/workspace/
iplan/Application.cfc:66)},ID={CF_UDFMETHOD},TEMPLATE={/workspace/
iplan/Application.cfc},LINE={66},TYPE={CFML},COLUMN={0}}]

here is my model config
// Module Properties
  this.title = "Reg-Flow";
  this.author = "";
  this.webURL = "";
  this.description = "A module that creates a Registration Flow";
  this.version = "1.0";
  this.viewParentLookup = true;
  this.layoutParentLookup = true;
  this.entryPoint = "regflow";

  /**
  * Configure the ForgeBox Module
  */
  function configure(){
    //var _forgeServiceforgebox ={path = "ForgeService"};

    settings = {
      version = "1.1"
    };

    // SES Routes ORDER MATTERS
    routes = [
      {pattern="/", handler="manager",action="index", orderby="POPULAR"}

    ];

    // Defined Model Mappings for this module.

    modelMappings = {};
  }

  /**
  * Called when the moduel is activated and application has loaded
  */
  function onLoad(){
    if( controller.settingExists("sesBaseURL") ){
      this.entryPoint = "regflow:manager";
    }
  }

my route
addModuleRoutes(pattern="/regflow",module="regflow");