Code Structure
Root Layout
bashCopyEdit/prax
├── frontend/ # React-based visual builder
├── backend/ # Node.js flow engine + API
├── .env.example # Sample environment config
├── docker-compose.yml
└── README.mdFrontend Structure (React)
bashCopyEdit/frontend
├── components/ # Reusable UI elements (buttons, forms)
├── flows/ # Flow builder logic and canvas UI
├── pages/ # App routes (Next.js or Vite)
├── services/ # API clients and utility functions
├── hooks/ # Custom React hooks
├── themes/ # Light/dark mode settings and styles
└── utils/ # Helpers and formatting functionsBackend Structure (Node.js)
Last updated