feat: add devcontainer based setup docs

This commit is contained in:
Abhishek Kumar 2026-05-25 18:28:47 +05:30
parent 1eb6c534d8
commit c4df866bcf
10 changed files with 311 additions and 125 deletions

View file

@ -30,6 +30,11 @@ import sys
import loguru
import pytest
REPO_ROOT = Path(__file__).resolve().parents[1]
SDK_PY_SRC = REPO_ROOT / "sdk" / "python" / "src"
if str(SDK_PY_SRC) not in sys.path:
sys.path.insert(0, str(SDK_PY_SRC))
from api.constants import APP_ROOT_DIR # noqa: E402