Skip to content

Commit

Permalink
Removing deployctl becasue we deploy through GH actions now.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbleslie committed Jun 10, 2024
1 parent 6b6c170 commit 29f0575
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
3 changes: 0 additions & 3 deletions bin/deployctl

This file was deleted.

1 change: 0 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 4 additions & 7 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 29f0575

Please sign in to comment.