diff options
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7870857 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +.ONESHELL: + +server: + php -S localhost:8080 -t src/pages + +build: ./src/*.php + php build.php --pages="/,/projects" --languages="de,en,jp" --server="http://localhost:8080" + +build_server: + php -S localhost:8081 -t build |