7 lines
193 B
Python
7 lines
193 B
Python
from pathlib import Path
|
|
|
|
from pyinfra.config.loader import load_settings
|
|
|
|
local_root_path = Path(__file__).parents[1]
|
|
CONFIG = load_settings(root_path=local_root_path, settings_path="config")
|