7 lines
171 B
Python
7 lines
171 B
Python
from pathlib import Path
|
|
|
|
ROOT = Path("/nas")
|
|
TEMPLATE_ROOT = ROOT.joinpath("templates")
|
|
APP_ROOT = ROOT.joinpath("apps")
|
|
TRAEFIK_PATH = TEMPLATE_ROOT.joinpath("traefik")
|