Skip to content

Instantly share code, notes, and snippets.

@ypandit
Forked from cybersiddhu/jplack
Created March 20, 2012 17:08
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 ypandit/2138268 to your computer and use it in GitHub Desktop.
Save ypandit/2138268 to your computer and use it in GitHub Desktop.
Plack to run JBrowse locally
## --- 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