Cleanup according to the Usage:

checkmake [options] <makefile>...
  checkmake -h | --help
  checkmake --version
  checkmake --list-rules Makefile linting tool.
This commit is contained in:
Ken Sternberg 2023-09-25 13:15:59 -07:00
parent 7cc7484932
commit 23e0b3da5e

View file

@ -1,3 +1,5 @@
.PHONY: gen dev-reset all clean test web website
.SHELLFLAGS += -x -e .SHELLFLAGS += -x -e
PWD = $(shell pwd) PWD = $(shell pwd)
UID = $(shell id -u) UID = $(shell id -u)
@ -219,7 +221,6 @@ install: web-install website-install
poetry install poetry install
.PHONY: dev-drop-db dev-create-db dev-reset
dev-drop-db: dev-drop-db:
dropdb -U $${PG_USER:-postgres} -h $${PG_HOST:-localhost} $${PG_DB:-authentik} dropdb -U $${PG_USER:-postgres} -h $${PG_HOST:-localhost} $${PG_DB:-authentik}
@ -227,9 +228,7 @@ dev-drop-db:
dropdb -U $${PG_USER:-postgres} -h $${PG_HOST:-localhost} test_authentik || true dropdb -U $${PG_USER:-postgres} -h $${PG_HOST:-localhost} test_authentik || true
redis-cli -n 0 flushall redis-cli -n 0 flushall
dev-create-db: dev-create-db:
createdb -U $${PG_USER:-postgres} -h $${PG_HOST:-localhost} $${PG_DB:-authentik} createdb -U $${PG_USER:-postgres} -h $${PG_HOST:-localhost} $${PG_DB:-authentik}
dev-reset: dev-drop-db dev-create-db migrate ## Drop and restore the Authentik PostgreSQL instance to a "fresh install" state. dev-reset: dev-drop-db dev-create-db migrate ## Drop and restore the Authentik PostgreSQL instance to a "fresh install" state.