Open Internet by MindsNet
lightningpixel/modly
Repository: lightningpixel/modly Stars: 5966 Forks: 604 Primary language: TypeScript Discovery sources: trending:daily Selection score: 78.65 Usefulness score: 9.7 Source confidence score: 3.5 Languages: TypeScript, Python, C++, JavaScript, Objective-C++, Cuda Topics: 3d, ai-local, ai-tools, desktop-app, modly, open-source, self-hosted Summary: Desktop app to generate 3D models from images or prompt using local AI — runs entirely on your GPU README excerpt: <p align="center"> <img src="resources/icons/icon.png" width="96" alt="Modly logo" /> </p> # Modly **Local, open source, AI-powered image-to-3D mesh generation.** Turn any photo into a 3D model using open source AI models running entirely on your GPU. Modly is a desktop application for Windows, Linux, and Apple Silicon macOS. > Created by [Lightning Pixel](https://github.com/lightningpixel) <p align="center"> <img src="docs/app-screenshot.png" alt="Modly screenshot" /> </p> --- ## Download Head to the [Releases](../../releases/latest) page to download the latest installer for Windows, Linux, or Apple Silicon macOS. Alternatively, you can clone the repository and run the app directly without installing: ```bash # Windows launch.bat # Linux / macOS ./launch.sh ``` --- ## Getting started ### 1. Install JS dependencies ```bash npm install ``` ### 2. Set up Python backend ```bash cd api python -m venv .venv .venv\Scripts\activate # Windows source .venv/bin/activate # Linux / macOS pip install -r requirements.txt ``` ### 3. Run in development ```bash npm run dev ``` ### 4. Test ```bash npm test ./node_modules/.bin/tsc --noEmit -p tsconfig.node.json npm run build ``` ## Platform notes - macOS support targets Apple Silicon only. - macOS uses native window controls. Windows and Linux keep the existing custom controls. - The top bar includes a live RAM indicator sourced from the main process. - Workflow wiring is validated before run; invalid graphs stay in place and surface inline/toast warnings instead of dropping the current mesh view. - Package Apple Silicon macOS with `npm run p
Computing & Technology, Computer Science, Web Development