From baf2119867c0c10de15cc7687bf8d460f24b624f Mon Sep 17 00:00:00 2001 From: ldericher <40151420+ldericher@users.noreply.github.com> Date: Fri, 22 Oct 2021 17:53:33 +0200 Subject: [PATCH] compose file name constant (for Project class) --- kiwi_scp/_constants.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kiwi_scp/_constants.py b/kiwi_scp/_constants.py index 8cdae2f..3bccffd 100644 --- a/kiwi_scp/_constants.py +++ b/kiwi_scp/_constants.py @@ -19,6 +19,8 @@ RE_VARNAME = r"^[A-Za-z](?:[A-Za-z0-9\._-]*[A-Za-z0-9])$" KIWI_ROOT = os.path.dirname(__file__) # default name of kiwi-scp file KIWI_CONF_NAME = os.getenv('KIWI_CONF_NAME', "kiwi.yml") +# default name of compose files +COMPOSE_FILE_NAME = "docker-compose.yml" ############ # FILE NAMES