From 0228f06e8101c0206089bf3ca322f4434d36e3fb Mon Sep 17 00:00:00 2001 From: Revant Nandgaonkar Date: Wed, 15 Feb 2023 17:16:11 +0530 Subject: [PATCH] fix: create apps.txt during configuration (#1081) --- compose.yaml | 1 + pwd.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/compose.yaml b/compose.yaml index a883e1e0..0939677d 100644 --- a/compose.yaml +++ b/compose.yaml @@ -23,6 +23,7 @@ services: - -c command: - > + ls -1 apps > sites/apps.txt; bench set-config -g db_host $$DB_HOST; bench set-config -gp db_port $$DB_PORT; bench set-config -g redis_cache "redis://$$REDIS_CACHE"; diff --git a/pwd.yml b/pwd.yml index bc561196..fe83920c 100644 --- a/pwd.yml +++ b/pwd.yml @@ -20,6 +20,7 @@ services: - -c command: - > + ls -1 apps > sites/apps.txt; bench set-config -g db_host $$DB_HOST; bench set-config -gp db_port $$DB_PORT; bench set-config -g redis_cache "redis://$$REDIS_CACHE";