source: bookmarks/trunk/cpanfile @ 102

Last change on this file since 102 was 102, checked in by peter, 9 years ago
  • allow a server_root key in the server config to set the root directory fdor the logs and pid file
  • updated the cpanfile to include more of the modules required for the web app to operate
File size: 447 bytes
Line 
1# vim:ft=perl
2requires 'Moose';
3requires 'HTTP::Date';
4requires 'JSON';
5requires 'SQL::Interp';
6requires 'URI';
7requires 'Template';
8requires 'Encode';
9
10# web application
11requires 'Plack', '1.0036';
12requires 'Starman';
13requires 'File::Pid';
14
15# for opening the dbh handle
16requires 'DBI';
17requires 'DBD::SQLite';
18
19# TODO: should these be recommends?
20requires 'XML::XBEL';
21requires 'XML::Atom';
22requires 'Text::CSV::Encoded';
23requires 'File::Slurp';
Note: See TracBrowser for help on using the repository browser.