this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add reset-and-setup command to Makefile (#3334)

authored by

Gigin George and committed by
GitHub
a72460e2 2eaaef51

+3 -1
+3 -1
Makefile
··· 1 - .PHONY: logs 1 + .PHONY: logs reset-and-setup 2 2 3 3 4 4 DOCKER_VERSION := $(shell docker --version 2>/dev/null) ··· 76 76 reset-db: 77 77 docker compose exec db sh -c "dropdb -U postgres care -f" 78 78 docker compose exec db sh -c "createdb -U postgres care" 79 + 80 + reset-and-setup: reset-db migrate load-fixtures 79 81 80 82 ruff-all: 81 83 ruff check .