Skip to content

Instantly share code, notes, and snippets.

@kraih
Created March 10, 2011 10:42
Show Gist options
  • Save kraih/863926 to your computer and use it in GitHub Desktop.
Save kraih/863926 to your computer and use it in GitHub Desktop.
# myapp.conf
{
foo => 1 + 1,
bar => 'baz'
};
# myapp.pl
use Mojolicious::Lite;
plugin 'Config';
get '/' => 'root';
app->start;
__DATA__
@@ root.html.ep
Foo: <%= $config->{foo} %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment