Project updates from Template #1

Merged
javier merged 123 commits from project/update-from-template into main 2026-09-04 13:40:36 +00:00
Showing only changes of commit 98cfbdd105 - Show all commits
+6 -2
View File
@@ -96,15 +96,19 @@ db-shell: ## Open a SQL shell on the local database instance
--dbname=$(or $(DATABASE_NAME),loud) --dbname=$(or $(DATABASE_NAME),loud)
.PHONY: db-unmount .PHONY: db-unmount
db-unmount: ## Stop and remove the local database instance (keeps the data volume) db-unmount: ## Stop and remove the local database instance while keeping its data
@docker compose \ @docker compose \
--profile database down postgres --profile database down postgres
.PHONY: db-reset .PHONY: db-reset
db-reset: ## Stop and remove the local database instance and delete its data volume db-reset: ## Stop and remove the local database instance, then delete its data
@docker compose \ @docker compose \
--profile database down postgres \ --profile database down postgres \
--volumes --volumes
@if [ -d Tests/DB ]; then \
rm -rf Tests/DB; \
mkdir -p Tests/DB; \
fi
# --- Assets minification ------------------------------------------------------ # --- Assets minification ------------------------------------------------------