#!/usr/bin/env python3
"""Run the stack from a checkout, without installing the package."""

import sys
from pathlib import Path

sys.path.insert(0, str(Path(__file__).resolve().parent.parent))

from libs.cli import main  # noqa: E402

if __name__ == "__main__":
    main()
