sync - still working on the TUI

This commit is contained in:
2025-09-27 13:24:20 -07:00
parent 72b5cc3aaa
commit ec02b923af
25 changed files with 1091 additions and 367 deletions

View File

@@ -7,8 +7,9 @@ import os
from pathlib import Path
# Add backend directory to path
backend_dir = Path(__file__).parent.parent
sys.path.insert(0, str(backend_dir))
# Add project root to path for alembic
project_root = Path(__file__).parent.parent.parent
sys.path.insert(0, str(project_root))
# Import base and models
from backend.app.models.base import Base