diff --git a/.gitignore b/.gitignore index c52b367..d9cb14e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .vscode/ +build/ node_modules/ *.wat diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..eb2df53 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +build: + mkdir -p build + cp -r ./public/* ./build + cd ./benchmarking && npm run build + cp -r ./benchmarking/dist ./build/benchmarking + cd ./compare-algorithms && npm run build + cp -r ./compare-algorithms/dist ./build/polygon-simplification \ No newline at end of file diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..661baa9 --- /dev/null +++ b/public/index.html @@ -0,0 +1,17 @@ + +
+ + + +