Skip to content

Commit ed8e2d6

Browse files
committed
Initial commit
0 parents  commit ed8e2d6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+14226
-0
lines changed

.gitignore

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Makefile
2+
/inc/
3+
MANIFEST
4+
*.bak
5+
*.old
6+
nytprof.out
7+
nytprof/
8+
*.db
9+
/blib/
10+
pm_to_blib
11+
META.json
12+
META.yml
13+
MYMETA.json
14+
MYMETA.yml
15+
/Build
16+
/_build/
17+
/local/
18+
/.carton/

.proverc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
-l
2+
-r t
3+
-Mt::Util

Build.PL

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
use strict;
2+
use warnings;
3+
use Module::Build;
4+
use Module::CPANfile;
5+
use builder::MyBuilder;
6+
7+
my $file = Module::CPANfile->load("cpanfile");
8+
my $prereq = $file->prereq_specs;
9+
10+
my $build = builder::MyBuilder->new(
11+
license => 'unknown',
12+
dynamic_config => 0,
13+
14+
build_requires => {
15+
$prereq->{build} ? %{$prereq->{build}->{requires}} : (),
16+
$prereq->{test} ? %{$prereq->{test}->{requires}} : (),
17+
},
18+
configure_requires => {
19+
%{$prereq->{configure}->{requires}},
20+
},
21+
requires => {
22+
perl => '5.008001',
23+
%{$prereq->{runtime}->{requires}},
24+
},
25+
script_files => [glob('script/*'), glob('bin/*')],
26+
27+
no_index => { 'directory' => [ 'inc' ] },
28+
name => 'App',
29+
module_name => 'App',
30+
author => 'Some Person <[email protected]>',
31+
dist_abstract => 'A web site based on Amon2',
32+
33+
test_files => (-d '.git' || $ENV{RELEASE_TESTING}) ? 't/ xt/' : 't/',
34+
recursive_test_files => 1,
35+
36+
create_readme => 0,
37+
create_license => 0,
38+
);
39+
$build->create_build_script();

Dockerfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FROM perl:5.24.1
2+
3+
WORKDIR /webapp
4+
RUN cpanm Carton Amon2

builder/MyBuilder.pm

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package builder::MyBuilder;
2+
use strict;
3+
use warnings;
4+
use utf8;
5+
use 5.008_001;
6+
use parent qw(Module::Build);
7+
8+
# Module:::Build's share_dir handling is not good for me.
9+
# We need to install 'tmpl' directories to '$DIST_DIR/tmpl'. But M::B doesn't support it.
10+
sub ACTION_code {
11+
my $self = shift;
12+
my $share_prefix = File::Spec->catdir($self->blib, qw/lib auto share dist/, 'App');
13+
for my $dir (qw(tmpl static)) {
14+
next unless -d $dir;
15+
for my $src (@{$self->rscan_dir($dir)}) {
16+
next if -d $src;
17+
$self->copy_if_modified(
18+
from => $src,
19+
to_dir => File::Spec->catfile( $share_prefix )
20+
);
21+
}
22+
}
23+
$self->SUPER::ACTION_code();
24+
}
25+
26+
1;

config/development.pl

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
use File::Spec;
2+
use File::Basename qw(dirname);
3+
my $basedir = File::Spec->rel2abs(File::Spec->catdir(dirname(__FILE__), '..'));
4+
my $dbpath = File::Spec->catfile($basedir, 'db', 'development.db');
5+
+{
6+
'DBI' => [
7+
"dbi:SQLite:dbname=$dbpath", '', '',
8+
+{
9+
sqlite_unicode => 1,
10+
}
11+
],
12+
};

config/production.pl

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
use File::Spec;
2+
use File::Basename qw(dirname);
3+
my $basedir = File::Spec->rel2abs(File::Spec->catdir(dirname(__FILE__), '..'));
4+
my $dbpath = File::Spec->catfile($basedir, 'db', 'production.db');
5+
+{
6+
'DBI' => [
7+
"dbi:SQLite:dbname=$dbpath", '', '',
8+
+{
9+
sqlite_unicode => 1,
10+
}
11+
],
12+
};

config/test.pl

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
use File::Spec;
2+
use File::Basename qw(dirname);
3+
my $basedir = File::Spec->rel2abs(File::Spec->catdir(dirname(__FILE__), '..'));
4+
my $dbpath = File::Spec->catfile($basedir, 'db', 'test.db');
5+
+{
6+
'DBI' => [
7+
"dbi:SQLite:dbname=$dbpath", '', '',
8+
+{
9+
sqlite_unicode => 1,
10+
}
11+
],
12+
};

cpanfile

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
requires 'Amon2', '6.13';
2+
requires 'Crypt::CBC';
3+
requires 'Crypt::Rijndael';
4+
requires 'DBD::SQLite', '1.33';
5+
requires 'HTML::FillInForm::Lite', '1.11';
6+
requires 'HTTP::Session2', '1.03';
7+
requires 'IO::Interface::Simple';
8+
requires 'JSON', '2.50';
9+
requires 'Module::Functions', '2';
10+
requires 'Plack::Middleware::ReverseProxy', '0.09';
11+
requires 'Router::Boom', '0.06';
12+
requires 'Starlet', '0.20';
13+
requires 'Teng', '0.18';
14+
requires 'Test::WWW::Mechanize::PSGI';
15+
requires 'Text::Xslate', '2.0009';
16+
requires 'Time::Piece', '1.20';
17+
requires 'perl', '5.010_001';
18+
19+
20+
on configure => sub {
21+
requires 'Module::Build', '0.38';
22+
requires 'Module::CPANfile', '0.9010';
23+
};
24+
25+
on test => sub {
26+
requires 'Test::More', '0.98';
27+
};

0 commit comments

Comments
 (0)