/[Frey]/trunk/bin/server-mojo.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /trunk/bin/server-mojo.pl

Parent Directory Parent Directory | Revision Log Revision Log


Revision 625 - (hide annotations)
Sat Nov 29 17:48:54 2008 UTC (15 years, 4 months ago) by dpavlin
File MIME type: text/plain
File size: 782 byte(s)
first refactor to support request_url correctly (needs more work)
1 dpavlin 267 #!/usr/bin/perl
2    
3     use strict;
4     use warnings;
5    
6 dpavlin 307 # debug enviroment vars
7     $ENV{MOJO_TEMPLATE_DEBUG} = 1;
8     $ENV{MOJO_LOADER_DEBUG} = 1;
9     #$ENV{MOJO_BASE_DEBUG} = 1;
10     $ENV{MOJO_SERVER_DEBUG} = 1;
11     $ENV{MOJOX_ROUTES_DEBUG} = 1;
12     $ENV{MOJO_RELOAD} = 1;
13    
14 dpavlin 267 use FindBin;
15    
16     use lib "$FindBin::Bin/lib";
17     use lib "$FindBin::Bin/../lib";
18     use lib "$FindBin::Bin/../../lib";
19    
20     $ENV{MOJO_APP} = 'Frey::Mojo';
21    
22     # Check if Mojo is installed
23     eval 'use Mojolicious::Scripts';
24     if ($@) {
25     print <<EOF;
26     It looks like you don't have the Mojo Framework installed.
27 dpavlin 307 Please visit http://getmojo.kraih.com for detailed installation instructions
28     or try to run Fray with one of other supported servers.
29 dpavlin 267
30     EOF
31     exit;
32     }
33    
34     # Start the script system
35     my $scripts = Mojolicious::Scripts->new;
36 dpavlin 307 $scripts->run(@ARGV || 'daemon');

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26