diff options
author | Volpeon <git@volpeon.ink> | 2020-12-23 17:57:36 +0100 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2020-12-23 17:57:36 +0100 |
commit | 213f8c2ce1d6c27bf579e7cb440e6ff53f076d30 (patch) | |
tree | a6a7cb1131dca76a4c63bf35cff063eca17d439c /Makefile | |
parent | Better build script, allow static files in content folder (diff) | |
download | volpeon.ink-213f8c2ce1d6c27bf579e7cb440e6ff53f076d30.tar.gz volpeon.ink-213f8c2ce1d6c27bf579e7cb440e6ff53f076d30.tar.bz2 volpeon.ink-213f8c2ce1d6c27bf579e7cb440e6ff53f076d30.zip |
Added favicon, also watch templates folder
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -31,7 +31,10 @@ watch_sass: build | |||
31 | watch_content: build | 31 | watch_content: build |
32 | @scripts/watch_content.sh | 32 | @scripts/watch_content.sh |
33 | 33 | ||
34 | watch: watch_sass watch_content | 34 | watch_templates: build |
35 | @scripts/watch_templates.sh | ||
36 | |||
37 | watch: watch_sass watch_content watch_templates | ||
35 | 38 | ||
36 | serve_only: build | 39 | serve_only: build |
37 | @python -m http.server --bind 127.0.0.1 --directory output | 40 | @python -m http.server --bind 127.0.0.1 --directory output |