diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2023-12-28 10:32:59 +0100 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2023-12-28 10:32:59 +0100 |
commit | 067e298b3d72fd7f66dfd3b0d2bca081971fd902 (patch) | |
tree | 67947ebea259b9e017d624263489249fe8b4098a /Justfile | |
parent | 4cf5b0aeb95015e85f41c9962e85dcd20e92800d (diff) |
Diffstat (limited to 'Justfile')
-rw-r--r-- | Justfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..5731185 --- /dev/null +++ b/Justfile @@ -0,0 +1,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 |