Graphical user interface (GUI) to help you build models in pype-schema.
Warning
Still under development. Portions of this codebase were generated by artificial intelligence tools. While the logic and architecture have been reviewed for functionality, the user assumes all responsibility for debugging outputs prior to production deployment.
git clone
cd pypes-gui
npm installIf it's not already, make sure that pype-schema is installed:
pip install pype-schemaTo launch the development environment (from within the pypes-gui subfolder):
npm run devAlternatively, the GUI can be installed and run from a Docker container:
docker build -t pypes-gui .
docker run -p 3000:3333 pypes-guiIn either case, the local server will be available at http://localhost:3000.
pypes-gui/ # Root directory
README.md # Project documentation
├── src/ # React source code
├── components/ # Reusable React components
├── pages/ # Core pages and styles
├── server/ # Backend logic for the app
├── store/ # Interactions with stored data
├── utils/ # Utility functions and constants
├── public/ # Static files (images, icons, etc.)
├── Dockerfile # Configuration of Docker container
├── next.config.js # Next.js configuration
├── package.json # Project metadata and dependencies