[dancer-users] Plack builder error

Russell Jenkins russell.jenkins at strategicdata.com.au
Wed Feb 11 11:55:21 GMT 2015


Hi Mark,

On 11/02/2015 8:57 pm, mark jones wrote:
> Following the tutorial here: http://search.cpan.org/~sukria/Dancer2-0.05/lib/Dancer2/Deployment.pod#Running_multiple_apps_with_Plack::Builder.

That tutorial link you provided is to a (very) old version of Dancer2.

I strongly recommend using the latest release (v0.158000) if you need 
multiple apps [1].
Your app.psgi then becomes

   use Plack::Builder;
   use lib '/home/mj/app1/lib';
   use lib '/home/mj/app2/lib';

   use app1;
   use app2;

   builder {
     mount "/app1" => app1->psgi_app;
     mount "/app2" => app2->psgi_app;
   };


Hope that helps,
   Russell.

[1] well, at least Dancer2 v0.151000 for this example to work.



More information about the dancer-users mailing list