feat: enable app_v2 via package init, verify reflex compilation

- Update pathways_app/__init__.py to re-export app from app_v2
- Verified reflex run compiles 33/33 components successfully
- App runs on localhost:3003 (frontend) and :8002 (backend)
- Mark completion criteria "App compiles" as verified
This commit is contained in:
Andrew Charlwood
2026-02-04 18:59:08 +00:00
parent 5267a9f4ef
commit e099538ea9
2 changed files with 6 additions and 2 deletions
+4
View File
@@ -0,0 +1,4 @@
# Re-export app from app_v2 for the new UI redesign
from pathways_app.app_v2 import app
__all__ = ["app"]