Skip to content

Instantly share code, notes, and snippets.

/minion_app.pl Secret

Created November 17, 2017 11:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/e61b2d17ec869d39f963c59aa99da94f to your computer and use it in GitHub Desktop.
Save anonymous/e61b2d17ec869d39f963c59aa99da94f to your computer and use it in GitHub Desktop.
use Mojolicious::Lite;
plugin Minion => {Pg => "postgres://tester:testing\@/test"};
plugin 'Minion::Admin';
app->minion->add_task(foo => sub { sleep 30 });
app->minion->enqueue('foo') for 1 .. 10;
app->start;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment