caddy-git icon indicating copy to clipboard operation
caddy-git copied to clipboard

Templates missing before git clone

Open evanpaschke opened this issue 8 years ago • 1 comments

I've noticed the following error starting caddy (v0.10.10):

Error during parsing: default template parse error: open site/templates/template.html: no such file or directory

with the following Caddyfile:

localhost:8080 {
        git github.com/user/site {
                hook /push key
        }
        root site
        markdown / {
                ext .md
                template templates/template.html
        }
}

Caddy throws the error and exits before the git plugin clones the repo. Would it be possible for the git plugin to defer template loading until the repo is cloned successfully?

evanpaschke avatar Dec 31 '17 06:12 evanpaschke

Hmmm, except adding the option of allowing the git plugin to block Caddy's startup until successful clone.

abiosoft avatar Dec 31 '17 10:12 abiosoft