Browse Source

adding --listen to the default make run command, as no server was spinned up with --autoreload

master
manetta 3 years ago
parent
commit
0a22c9a17c
  1. 2
      makefile

2
makefile

@ -7,7 +7,7 @@ dependencies:
@if [ ! -d ".venv" ]; then python3 -m venv .venv && .venv/bin/pip install -r requirements.txt; fi @if [ ! -d ".venv" ]; then python3 -m venv .venv && .venv/bin/pip install -r requirements.txt; fi
run: core-plugins dependencies run: core-plugins dependencies
@.venv/bin/pelican --autoreload @.venv/bin/pelican --autoreload --listen
publish: publish:
@.venv/bin/pelican -o /var/www/html/ @.venv/bin/pelican -o /var/www/html/

Loading…
Cancel
Save