Phase 1-3 of decoupling: - path_setup.py adds project root to sys.path - Cart-owned models in cart/models/ (order, page_config) - All imports updated: shared.infrastructure, shared.db, shared.browser, etc. - PageConfig uses container_type/container_id instead of post_id FK Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
214 B
Python
10 lines
214 B
Python
import sys
|
|
import os
|
|
|
|
_app_dir = os.path.dirname(os.path.abspath(__file__))
|
|
_project_root = os.path.dirname(_app_dir)
|
|
|
|
for _p in (_project_root, _app_dir):
|
|
if _p not in sys.path:
|
|
sys.path.insert(0, _p)
|