Deploying Perl Application

后端 未结 3 1326
眼角桃花
眼角桃花 2021-02-05 14:02

What are the best practices for deploying a Perl application? Assume that you are deploying onto a vanilla box with little CPAN module installation. What are the ideal build, de

3条回答
  •  故里飘歌
    2021-02-05 14:42

    If it has some significant CPAN dependencies, then you might want to either write a small script that uses CPAN::Shell to install the necessary modules or edit the Makefile.PL of your application so that it reflects the necessary dependencies in the BUILD_REQUIRES portion of the file.

提交回复
热议问题