diff --git a/box.json b/box.json index a9c06d0..9373fc9 100644 --- a/box.json +++ b/box.json @@ -33,6 +33,9 @@ "coldbox":"lib/coldbox/", "testbox":"lib/testbox/" }, + "installPathConventions":{ + "modules":"lib/modules" + }, "scripts":{ "postPublish":"!git push origin --tags", "postInstall":"pathExists .env || cp .env.example .env", diff --git a/modules/.gitkeep b/modules/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/public/Application.cfc b/public/Application.cfc index 04a2d8b..688cb52 100644 --- a/public/Application.cfc +++ b/public/Application.cfc @@ -33,7 +33,7 @@ component { this.mappings[ "/public" ] = _publicRoot; this.mappings[ "/app" ] = _root & "app"; this.mappings[ "/coldbox" ] = _root & "lib/coldbox"; - this.mappings[ "/modules" ] = _root & "modules"; + this.mappings[ "/modules" ] = _root & "lib/modules"; /** * --------------------------------------------------------------------------