Skip to content

Instantly share code, notes, and snippets.

@cybersiddhu
Created March 10, 2011 00:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cybersiddhu/863313 to your computer and use it in GitHub Desktop.
Save cybersiddhu/863313 to your computer and use it in GitHub Desktop.
## --- install plack
cpanm Plack
# -- save this file as jbrowse.plack
use Plack::App::Directory;
my $app = Plack::App::Directory->new({ root => '.'})->to_app;
$app;
## -- drop it at the top level of jbrowse folder
## -- start the server
plackup jbrowse.plack
## -- open your browser at localhost:5000 by default
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment