Skip to content

Instantly share code, notes, and snippets.

@fabioadrianosoares
Created April 18, 2014 12:42
Show Gist options
  • Save fabioadrianosoares/11042181 to your computer and use it in GitHub Desktop.
Save fabioadrianosoares/11042181 to your computer and use it in GitHub Desktop.
servidor web local mojolicious (para poder testar html e js)
use Mojolicious::Lite;
use Mojolicious::Static;
use Cwd;
my $static = Mojolicious::Static->new;
$static->paths([getcwd]);
app->static($static);
app->start('daemon');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment