Skip to content
English
Dashboard

Working with SnapVM

SnapVM is built around a small set of durable concepts: machines, terminal sessions, services, storage, and organizations. The web console is the primary way to operate them, and the CLI is available for local terminal workflows.

  1. Choose an organization in the console.
  2. Create a machine for a project, demo, class, or automation host.
  3. Open a terminal and set up the workspace.
  4. Start short-lived exploratory commands in the terminal.
  5. Define services for long-running processes.
  6. Stop or leave the machine to hibernate when idle.
  7. Reopen the machine later and continue from the persisted filesystem.
  8. Optionally install the CLI and use snapvm use to target the machine from your local project directory.

A machine is a named workspace backed by a runtime. It owns the state you care about: files, packages, repositories, service definitions, and application URL settings.

Machine names may also become part of the application URL. Keep names short and stable, for example api-demo, automation-lab, or frontend-review.

Terminal sessions are interactive shells for a machine. They are useful for development, debugging, installing tools, and inspecting logs.

Sessions can survive browser disconnects, but they are still interactive work surfaces. If a process must keep running across hibernation, make it a service instead of relying on an open terminal tab.

Services are durable process definitions. Use services for web servers, databases, queues, workers, language servers, or automation processes that should restart when a machine wakes.

A service usually has:

  • A name
  • A command and arguments
  • A working directory
  • Optional environment variables
  • An optional HTTP port
  • Lifecycle state such as running, stopped, or failed

The filesystem persists across stop and hibernation. This includes source code, installed packages, databases stored on disk, configuration files, and generated artifacts.

In-memory state does not persist. Processes started in an interactive shell stop when the runtime sleeps unless they are managed as services.

Machines belong to organizations. Users only see and operate machines in organizations where they have access.

Common access tasks happen in the console:

  • Create or switch organizations
  • Invite members
  • Review machine ownership
  • Update member roles when the deployment supports role management
NeedUse
A durable workspace for a projectMachine
A browser shell for explorationTerminal session
Local terminal commands against a machineCLI
A long-running processService
Files and packages that survive idle timePersistent filesystem
Team-level ownership and accessOrganization