Is there a master package/tag list which lists all...
# adobe
j
Is there a master package/tag list which lists all packages required by corresponding tags or vice versa? I have a CF2021 server where they installed all of the packages by default. I would like to slim it down a bit. The obvious ones are easy, but a reference list could come in handy.
And there’s this ( https://helpx.adobe.com/coldfusion/using/coldfusion-package-manager.html )… Code scanner ColdFusion is modularized and only contains the core by default. It can be pretty difficult task to identify the list of packages that must be installed in order to run the application successfully. The code scanner comes to the rescue and automatically scans through the specified code base and returns the list of required packages to be installed. Enter the following command: scan <path_to_your_code_base> http//[CF SERVER HOST]port In addition, you can scan the code base and install the recommended packages in one go as well. Enter the following command: scanandinstall <path_to_your_code_base> http//[CF SERVER HOST]port For example, scanandinstall <code_base/wwwroot/cfm> http://localhost:8500.
💯 1