fe8642dfaf
- Remove reflex dependency from pyproject.toml - Move pathways_app/ and rxconfig.py to archive/ - Update CLAUDE.md: Dash app structure, callback chain, run command - All completion criteria validated (10/10 pass)
14 lines
259 B
Python
14 lines
259 B
Python
import sys
|
|
from pathlib import Path
|
|
|
|
sys.path.insert(0, str(Path(__file__).parent / "src"))
|
|
|
|
import reflex as rx
|
|
|
|
config = rx.Config(
|
|
app_name="pathways_app",
|
|
plugins=[
|
|
rx.plugins.SitemapPlugin(),
|
|
rx.plugins.TailwindV4Plugin(),
|
|
]
|
|
) |