From 2cf0e5d2de404937815115638d00b93e96824033 Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Fri, 31 May 2024 01:45:19 -0500 Subject: [PATCH] new: Ability to disable Cache-Control headers in testing recipe --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fa3f58c..1d20864 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,8 @@ docker-stop: docker-test: docker-local docker-stop docker run -p 4567:4567 --name chhoto-url -e password="${PASSWORD}" -e public_mode="${PUBLIC_MODE}" \ -e site_url="${SITE_URL}" -e db_url="${DB_URL}" -e redirect_method="${REDIRECT_METHOD}" \ - -e slug_style="${SLUG_STYLE}" -e slug_length="${SLUG_LENGTH}" -d chhoto-url + -e slug_style="${SLUG_STYLE}" -e slug_length="${SLUG_LENGTH}" -e cache_control_header="${CACHE_CONTROL_HEADER}"\ + -d chhoto-url docker logs chhoto-url -f docker-dev: build-dev