diff --git a/bin/deployctl b/bin/deployctl deleted file mode 100755 index 39721c0..0000000 --- a/bin/deployctl +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -# generated by deno install -exec deno run --allow-all --no-config 'jsr:@deno/deployctl' "$@" diff --git a/flake.nix b/flake.nix index c74b9d5..b425d53 100644 --- a/flake.nix +++ b/flake.nix @@ -72,7 +72,6 @@ shellHook = '' ln -sf ${stylelint-config-recommended}/index.js ./stylelint.config.mjs ${self.checks.${system}.pre-commit-check.shellHook} - export PATH="bin:$PATH" ''; ENV = "dev"; # Used in the event we need a development environment hook. PORT = 6969; # Sets the development server's port diff --git a/makefile b/makefile index 02170b9..ce33640 100644 --- a/makefile +++ b/makefile @@ -4,20 +4,17 @@ .PHONY: test .PHONY: help -help: ## Help What runs when you type `make help`. +help: ## Help -- What runs when you type `make help`. @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' -test: ## Dev - Run linters and tests. +test: ## Dev -- Run linters and tests. nix flake check -update: ## Dev - Update the flake +update: ## Dev -- Update the flake nix flake update update-fresh: ## Dev -- Update Fresh deno run -A -r https://fresh.deno.dev/update . -dev: ## Start the development Server +dev: ## Dev -- Start the development Server deno task start - -deploy: ## Deploy the app - deployctl deploy --org=ookiiboy --project=hyoketsu --save-config