mirror of
https://github.com/yavook/kiwi-scp.git
synced 2025-12-06 16:43:00 +00:00
7 lines
189 B
Python
7 lines
189 B
Python
# system
|
|
import os
|
|
|
|
# location of "src" directory to use
|
|
KIWI_ROOT = os.getenv('KIWI_ROOT', ".")
|
|
# default name of kiwi-config file
|
|
KIWI_CONF_NAME = os.getenv('KIWI_CONF_NAME', "kiwi.yml")
|