Add hydra-dev-server which uses the classic Catalyst server

This, in turns allows

 - Using --restart for reloading the perl code
 - Printing traces on error
This commit is contained in:
Samuel Dionne-Riel
2019-01-22 20:34:21 -05:00
parent e0d8dcfe2d
commit 04ff9e217b
2 changed files with 66 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package Hydra::Script::DevServer;
use Moose;
use namespace::autoclean;
extends 'Catalyst::Script::Server';
1;