2

I have got a Mojolicious::Lite app:

use Mojolicious::Lite;
use User;

get '/' => sub {
   my $self = shift;
   $self->render('index');
};

get '/login' => sub {
   my $self = shift;
   $self->redirect_to(User::getLoginLink);
};

I use Morbo in development. I don't need to restart Morbo if I change code in this 2 subs, but User::getLoginLink will be updated only with morbo's restart. Is it possible to make morbo watch for changes in modules? (for example, 'User' module)

4

2 に答える 2

6

morboサーバーのオプション-wを使用できます。デフォルトでは、 morboは現在のディレクトリにあるアプリケーション スクリプトとカタログlibおよびテンプレートの変更のみを監視します。

morboヘルプからの使用例:

morbo -w /usr/local/lib -w public myapp.pl
于 2013-08-26T04:05:17.430 に答える