From 0be57c836927e7cb8adfe3bbf8f300fb12d1e773 Mon Sep 17 00:00:00 2001 From: Adrien Audebert Date: Tue, 10 Sep 2024 15:44:00 +0200 Subject: [PATCH] merge thouch --- env_template | 1 + logs/django.log | 1 + makefile | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/env_template b/env_template index b297aeb..5d52cf0 100644 --- a/env_template +++ b/env_template @@ -13,6 +13,7 @@ DB_HOST=db DB_PORT=5432 PWD_PATH=${PWD} PROJECT_PATH=${PWD_PATH}/pong +DJANGO_LOGS=${PWD_PATH}/logs # ElasticSearch settings STACK_VERSION=8.14.3 diff --git a/logs/django.log b/logs/django.log index 39a3693..444904d 100644 --- a/logs/django.log +++ b/logs/django.log @@ -6,3 +6,4 @@ {"message": "Not Found: /favicon.ico", "taskName": null, "status_code": 404, "request": ""} {"message": "Not Found: /favicon.ico", "taskName": null, "status_code": 404, "request": ""} {"message": "Not Found: /favicon.ico", "taskName": null, "status_code": 404, "request": ""} +{"message": "Not Found: /favicon.ico", "taskName": null, "status_code": 404, "request": ""} diff --git a/makefile b/makefile index 6d3c8d1..87de884 100644 --- a/makefile +++ b/makefile @@ -4,7 +4,7 @@ CONTAINER=$(c) up: down $(COMPOSE) build - $(COMPOSE) up $(CONTAINER) + $(COMPOSE) up -d $(CONTAINER) || true build: $(COMPOSE) build $(CONTAINER)