honestly this is gonna be the death of me

This commit is contained in:
Matthew Connelly 2015-11-16 00:45:17 +00:00
parent 54ce9f71ff
commit abdbdfdbf3
3 changed files with 13 additions and 12 deletions

View File

@ -2,7 +2,8 @@
use strict;
use warnings;
use FindBin;
use lib "$FindBin::Bin/lib";
use lib "$FindBin::Bin/../lib";
use App::BlogAlba;
App::BlogAlba->start;

View File

@ -3,20 +3,20 @@ charset: "UTF-8"
tz: "Europe/London"
locale: "en_GB"
logger: "file"
logger: "console"
log: "debug"
# Uncomment for debugging
show_errors: 1
#show_errors: 1
#Blog configuration
url: "https://maff.scot/"
name: "colourful words and phrases"
tagline: "techy tangents and general life chatter from a tired sysadmin."
author: "Maff"
about: "A dorky dude who spends too much time with perl."
url: https://maff.scot/
name: colourful words and phrases
tagline: techy tangents and general life chatter from a tired sysadmin.
author: Maff
about: A dorky dude who spends too much time with perl.
keywords: "sysadmin,unix,bsd,freebsd,linux,software,web,developer,perl,bash,shell,gentoo,maff,matthew,connelly,dundee,scotland,furry,blog"
posturlprepend: "wrote/"
posturlprepend: wrote/
conf:
indexable: 1
per_page: 6
@ -25,5 +25,5 @@ conf:
rss_excerpt: 1
date_format: "%H:%M on %A, %d/%m/%y"
links:
Twitter: "https://twitter.com/maffsie"
Github: "https://github.com/Maffsie"
Twitter: https://twitter.com/maffsie
Github: https://github.com/Maffsie

2
start
View File

@ -10,4 +10,4 @@ PERL_MM_OPT="INSTALL_BASE=$BASE/perl5"; export PERL_MM_OPT;
pkill -F $BASE/${APP}.pid 2>/dev/null
while true;do pkill -0 -F $BASE/${APP}.pid 2>/dev/null || break; sleep 1; done
cd $BASE/$APP
plackup -s Starman -D -S $BASE/$APP/.sock -a $BASE/$APP/app.psgi --pid $BASE/${APP}.pid $START_OPTS
plackup -s Starman -D -S $BASE/$APP/.sock $BASE/$APP/bin/app.pl --pid $BASE/${APP}.pid $START_OPTS