Mineo
DEV ENVIRONMENTS

Launch Dev Environments

Get a full Linux workspace in the browser with VS Code, terminal access, Git workflows, and the freedom to install Codex, Claude Code, Gemini CLI, or whatever your team needs.

MINEO VS Code — Dev Environment
app.py
pipeline.py

import streamlit as st

from mineo import DataSource

import plotly.express as px

 

st.set_page_config(layout="wide")

st.title("Sales Dashboard")

 

ds = DataSource("sales_db")

df = ds.query("SELECT * FROM orders")

 

# Layout

col1, col2 = st.columns(2)

col1.metric("Revenue", f"${df.total.sum():,.0f}")

col2.metric("Customers", f"${df.customer_id.nunique():,}")

 

# Charts

fig = px.bar(df, x="month", y="total", color="region")

st.plotly_chart(fig, use_container_width=True)

 

st.dataframe(df.head(10), use_container_width=True)

TERMINAL | zsh

mineo-dev@workspace:~/project$

Successfully installed plotly-5.22 scikit-learn-1.5

Your app is live at https://sales-dashboard.mineo.app

✓ Deployed successfully

Full VS Code
Any Tooling
Custom Docker + GPU

A cloud workspace without local setup

Open a browser, enter your environment, install what you need, and build with the same flexibility you expect from a local machine.

1

Open VS Code in the browser

Start with a complete editor, file explorer, extensions, and terminal without configuring local machines.

2

Install your toolchain

Bring AI coding agents, CLIs, packages, extensions, and framework-specific dependencies into the environment.

3

Build and ship in one place

Develop notebooks, apps, and pipelines from the same workspace connected to your MINEO project.

Everything you expect from a real development workspace

This is not a toy editor. It is a practical cloud environment for coding, debugging, versioning, and shipping Python products.

Editor, explorer, and terminal

Work with files, tabs, commands, and extensions the same way you would in a serious VS Code setup.

Your tools, not just ours

Install Codex, Claude Code, Gemini CLI, linters, SDKs, and framework-specific tooling directly in the workspace.

Git-native workflow

Branch, diff, review, and iterate without leaving the environment or forcing work onto local laptops.

RUNTIME & INFRASTRUCTURE

Configured for actual development

Dev Environments are designed for teams that need control over packages, images, compute, and access to project resources.

Install packages and system tools

Bring the dependencies you need into the environment instead of relying on per-laptop setup for every new teammate.

Custom Docker images and GPU

Tailor environments to your stack and unlock heavier workloads when the project demands more compute.

Connected to datasources and project context

Build with direct access to MINEO datasources, project files, and the rest of the platform around your code.

AI-native development

Use modern coding agents and assistants inside the same environment where your project already lives.

Framework flexibility

Build across notebooks, apps, and pipelines without switching platforms or managing multiple runtimes.

Project-connected workspace

Work against the same codebase, resources, and deployment surfaces used by your team.

Team-ready onboarding

Avoid differences between local machines and get new teammates into a consistent setup from day one.

BUILD OUTPUTS

One workspace for multiple products

A cloud dev environment is valuable when it accelerates what your team is already building across the rest of MINEO.

Notebooks

Author and refine notebook-based analysis with better tooling and less setup friction.

Live Apps

Build and iterate on Python apps that are meant to be deployed and shared.

Pipelines

Create workflow logic, automation, and production jobs from the same workspace.

Technical docs

Go deeper with the documentation

Technical references, implementation details and examples for teams building on MINEO.

Open your first cloud dev environment

Start with VS Code in the browser, install your tools, and build directly on top of your MINEO project.