Try this again...
This commit is contained in:
parent
f9149361cf
commit
e3155fad7b
|
@ -2,7 +2,6 @@ FROM docker.io/perl:5.36
|
|||
|
||||
# Move it
|
||||
WORKDIR /opt
|
||||
COPY assets/ ./assets/
|
||||
COPY lib/ ./lib/
|
||||
COPY migrations/ ./migrations/
|
||||
COPY public/ ./public/
|
||||
|
@ -17,7 +16,7 @@ RUN apt-get update
|
|||
RUN apt-get -y upgrade
|
||||
# Work around for test failing due to headers being lowercase now that
|
||||
# cpan.org is on HTTP/2
|
||||
RUN cpanm --notest Net::HTTP
|
||||
#RUN cpanm --notest Net::HTTP
|
||||
RUN cpanm --installdeps .
|
||||
|
||||
# Finish setting up the environment
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
[css-min:css/PostText.css]
|
||||
checksum=3698d7bf52
|
||||
format=css
|
||||
minified=1
|
||||
[css-min:https://unpkg.com/98.css]
|
||||
checksum=4f089bc53f
|
||||
format=css
|
||||
minified=1
|
||||
[sass:sass/post_text.scss]
|
||||
checksum=ecda188939
|
||||
format=css
|
||||
minified=0
|
|
@ -1,5 +0,0 @@
|
|||
! app.css
|
||||
< https://unpkg.com/normalize.css@8.0.1/normalize.css
|
||||
< css/elements.css
|
||||
< css/simple.css
|
||||
< css/nested.css
|
2
cpanfile
2
cpanfile
|
@ -1,11 +1,9 @@
|
|||
requires 'Mojolicious';
|
||||
requires 'Mojo::Pg';
|
||||
requires 'Mojolicious::Plugin::TagHelpers::Pagination';
|
||||
requires 'Mojolicious::Plugin::AssetPack';
|
||||
requires 'Crypt::Passphrase::Argon2';
|
||||
requires 'Date::Format';
|
||||
requires 'XML::RSS';
|
||||
requires 'CSS::Minifier::XS';
|
||||
requires 'Text::Markdown';
|
||||
requires 'HTML::Restrict';
|
||||
requires 'IO::Socket::SSL';
|
||||
|
|
|
@ -18,7 +18,6 @@ use PostText::Model::Page;
|
|||
sub startup($self) {
|
||||
$self->plugin('Config');
|
||||
$self->plugin('TagHelpers::Pagination');
|
||||
$self->plugin(AssetPack => {pipes => [qw{Css Combine}]});
|
||||
|
||||
# Helpers
|
||||
$self->helper(pg => sub ($c) {
|
||||
|
@ -108,8 +107,6 @@ sub startup($self) {
|
|||
$self->thread->max_pages($max_thread_pages)
|
||||
}
|
||||
|
||||
$self->asset->process;
|
||||
|
||||
push @{$self->commands->namespaces}, 'PostText::Command';
|
||||
|
||||
# Begin routing
|
||||
|
|
|
@ -29,7 +29,9 @@
|
|||
content="<%= url_for('/images/logo.png')->to_abs %>">
|
||||
<meta name="twitter:image:alt"
|
||||
content="Post::Text logo; a small nerdy anime girl giving a V sign">
|
||||
<%= asset 'app.css' %>
|
||||
<%= stylesheet '/css/elements.css' %>
|
||||
<%= stylesheet '/css/simple.css' %>
|
||||
<%= stylesheet '/css/nested.css' %>
|
||||
</head>
|
||||
<body>
|
||||
<header class="header">
|
||||
|
|
Loading…
Reference in a new issue