in reply to Re^3: Mojolicious, Morbo, Hypnotoad and Apache httpd deployment
in thread Mojolicious, Morbo, Hypnotoad and Apache httpd deployment [SOLVED]

Is /home/martin/PokusApp/lib in @INC?

No, it is not.

What is in @INC?

@INC contains: /usr/local/lib/perl5 /usr/local/share/perl5 /usr/lib/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5 /usr/share/perl5 .

Why does your runapp not use FindBin?

I thought that I could make do without it (FindBin). Now I see that it was bad idea probably while FindBin is Perl 5 core module.

Why is your runapp not called pokus_app?

I think it's possible according to docs so why not?

When I make an app with mojo generate app PokusApp I run it without problems with morbo pokus_app/script/pokus_app

Yes, me too, even if I run this:

$ morbo PokusApp/script/runapp

Replies are listed 'Best First'.
Re^5: Mojolicious, Morbo, Hypnotoad and Apache httpd deployment
by Anonymous Monk on Jun 01, 2014 at 20:32 UTC

    So, problem solved now (switching to findbin fixed it)?

      Yes, it seems to be working well with Hypnotoad and Morbo servers now after switching to FindBin module. (Why?) I still didn't configure Apache httpd server properly because at first I wanted to make changes in my files and test its function. At second I want to configure httpd. But maybe there will be no necessity for that while everything is fine with Hypnotoad.

      Thank you Monks!