compose file name constant (for Project class)

This commit is contained in:
Jörn-Michael Miehe 2021-10-22 17:53:33 +02:00
parent c96e2c55d4
commit baf2119867

View file

@ -19,6 +19,8 @@ RE_VARNAME = r"^[A-Za-z](?:[A-Za-z0-9\._-]*[A-Za-z0-9])$"
KIWI_ROOT = os.path.dirname(__file__) KIWI_ROOT = os.path.dirname(__file__)
# default name of kiwi-scp file # default name of kiwi-scp file
KIWI_CONF_NAME = os.getenv('KIWI_CONF_NAME', "kiwi.yml") KIWI_CONF_NAME = os.getenv('KIWI_CONF_NAME', "kiwi.yml")
# default name of compose files
COMPOSE_FILE_NAME = "docker-compose.yml"
############ ############
# FILE NAMES # FILE NAMES