summaryrefslogtreecommitdiff
path: root/Justfile
blob: 5731185e838f141ddaf557eae90bf72ee85b73b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
build_server:
  php -S localhost:8081 -t src/pages

build:
  php build.php --pages="/,/projects" --languages="de,en,jp" --server="http://localhost:8081"

dev:
  ls build.php src/*.php src/pages/*.php | entr just build

serve:
  php -S localhost:8080 -t build