diff --git a/.gitignore b/.gitignore index 722d5e7..c0126c3 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .vscode +main diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5969fc9 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +run: ts + go run main.go + +build: ts + go build main.go -o pixeldrain-web + +ts: + tsc --strict res/static/res/typescript/lib/*.ts --outFile res/static/res/script/pixellib.js + tsc --strict res/static/res/typescript/home/*.ts \ + res/static/res/typescript/lib/*.ts \ + --outFile res/static/res/script/home.js \ No newline at end of file diff --git a/blackchancery.zip b/blackchancery.zip deleted file mode 100644 index 58da515..0000000 Binary files a/blackchancery.zip and /dev/null differ diff --git a/main b/main deleted file mode 100755 index 49bb8b5..0000000 Binary files a/main and /dev/null differ