DevolibLIDE runtime
Container-native development environment

Devolib LIDE — your repository,running as a system.

Import a full-stack project. LIDE discovers how it is built, starts it inside an isolated runtime, and exposes the working parts in one interface.

Per-project containerAutomatic stack detectionLive source model
LIDE / 01main / commerce-platformruntime healthy
projects.py
1from fastapi import APIRouter
2from app.models import Workspace
3
4router = APIRouter(prefix="/projects")
5
6@router.post("/import")
7async def import_repository(repo: str):
8 workspace = await Workspace.create(repo)
9 return workspace.runtime_state
✓ stack detected Next.js · FastAPI · PostgreSQL
✓ routes mapped 12 pages · 28 endpoints
✓ proxy attached commerce-platform.localhost

Understands the repository

Pages, endpoints, roots, and schema come from source.

Runs the actual stack

Services run inside an isolated project runtime.

Keeps it operable

Terminal output and service state stream back live.