summaryrefslogtreecommitdiff
path: root/posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2016-08-10 14:33:04 -0700
committerFranck Cuny <franck.cuny@gmail.com>2016-08-10 20:17:56 -0700
commit8d7d02f42c3947f756c18cb4d37d9d97fbd0d27d (patch)
treea6cecddaaea7e87d901a6c28bebe3a531438f24b /posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md
parentMerge branch 'convert-to-org' (diff)
downloadlumberjaph-8d7d02f42c3947f756c18cb4d37d9d97fbd0d27d.tar.gz
convert back to md
Diffstat (limited to 'posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md')
-rw-r--r--posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md b/posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md
new file mode 100644
index 0000000..297118f
--- /dev/null
+++ b/posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md
@@ -0,0 +1,18 @@
+Let's say you have a large [Catalyst](http://search.cpan.org/perldoc?Catalyst) application, with a lot of compoments. When you deploy your application, or when you want to test it while your developping, you may not want to have some of thoses components loaded (you don't have all the dependencies, they are incompatible, etc...). Catalyst use [Module::Pluggable](http://search.cpan.org/perldoc?Module::Pluggable) to load the components, so you can easily configure this. In your application's configuration, add:
+
+``` yaml
+setup_components:
+ except:
+ - MyApp::Model::AAAA
+ - MyAPP::Model::BBBB::REST
+ ...
+```
+
+Module::Pluggable have some other interesting features. You may have a second Catalyst application, and want to use one or more components from this one. You can easily do this:
+
+``` yaml
+setup_components:
+ search_path:
+ - MyApp
+ - MyOtherApp::Model
+```