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.
Explorer
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)
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
Open a browser, enter your environment, install what you need, and build with the same flexibility you expect from a local machine.
Start with a complete editor, file explorer, extensions, and terminal without configuring local machines.
Bring AI coding agents, CLIs, packages, extensions, and framework-specific dependencies into the environment.
Develop notebooks, apps, and pipelines from the same workspace connected to your MINEO project.
This is not a toy editor. It is a practical cloud environment for coding, debugging, versioning, and shipping Python products.
Work with files, tabs, commands, and extensions the same way you would in a serious VS Code setup.
Install Codex, Claude Code, Gemini CLI, linters, SDKs, and framework-specific tooling directly in the workspace.
Branch, diff, review, and iterate without leaving the environment or forcing work onto local laptops.
Dev Environments are designed for teams that need control over packages, images, compute, and access to project resources.
Bring the dependencies you need into the environment instead of relying on per-laptop setup for every new teammate.
Tailor environments to your stack and unlock heavier workloads when the project demands more compute.
Build with direct access to MINEO datasources, project files, and the rest of the platform around your code.
Use modern coding agents and assistants inside the same environment where your project already lives.
Build across notebooks, apps, and pipelines without switching platforms or managing multiple runtimes.
Work against the same codebase, resources, and deployment surfaces used by your team.
Avoid differences between local machines and get new teammates into a consistent setup from day one.
A cloud dev environment is valuable when it accelerates what your team is already building across the rest of MINEO.
Author and refine notebook-based analysis with better tooling and less setup friction.
Build and iterate on Python apps that are meant to be deployed and shared.
Create workflow logic, automation, and production jobs from the same workspace.
Technical references, implementation details and examples for teams building on MINEO.
Start with VS Code in the browser, install your tools, and build directly on top of your MINEO project.