mojolicious-app.pl 326 B

123456789101112131415161718
  1. # From the root directory, run one of the following:
  2. # 1. stuff/mojolicious-app.pl daemon -l http://localhost:8080
  3. # 2. stuff/hypnotoad.pl
  4. # 3. stuff/toadfarm.pl start
  5. use Mojolicious::Lite;
  6. plugin CGI => {
  7. support_semicolon_in_query_string => 1,
  8. };
  9. plugin CGI => {
  10. route => '/',
  11. script => 'wiki.pl',
  12. };
  13. app->start;