diff --git a/Makefile b/Makefile deleted file mode 100644 index 335d6dc..0000000 --- a/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -.PHONY: build deploy - -help: ## Show this help. - @awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {sub("\\\\n",sprintf("\n%22c"," "), $$2);printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST) - -build: ## Build static binary and put it in the functions directory. - @cargo build --release - @mkdir -p functions - @cp target/release/lupt functions - -deploy: build ## Deploy the site using Netlify's CLI - @netlify deploy --prod \ No newline at end of file diff --git a/netlify.toml b/netlify.toml deleted file mode 100644 index 311c5e7..0000000 --- a/netlify.toml +++ /dev/null @@ -1,4 +0,0 @@ -[build] -command = "make build" -publish = "static" -functions = "functions"