Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 437 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 437 Bytes

Cantilever Build Status

A flat file CMS for Perl 6

Usage

use v6;
use lib 'lib';
use Cantilever;

my $app = Cantilever.new(
  dev => True,
  port => 3000,
  root => "http://localhost:3000",
  cacheLife => 0
);

$app.run;

Local development

Run tests:

PERL6LIB=lib prove -v -r --exec=perl6 t/