Exo
  • About Exo
  • Getting Started
    • Quick Start
    • Installing Exo
      • Uninstall
  • Using Exo
    • Command Line Interface
    • Concepts
  • Manifests
    • exo.hcl
    • Migrating to Exo
      • Procfiles
      • Compose
  • Components
    • Overview
    • Unix
      • Process
    • Docker
      • Container
      • Volume
      • Network
  • Support
    • Github Issues
    • Slack Community
  • Resources
    • Videos
    • Github
    • Changelog
    • Legal
      • License
      • Terms of Service
      • Privacy Privacy
Powered by GitBook
On this page
  • Workspaces
  • Manifests
  • Components
  • Resources
  • Daemon

Was this helpful?

  1. Using Exo

Concepts

PreviousCommand Line InterfaceNextexo.hcl

Last updated 3 years ago

Was this helpful?

Workspaces

Maps an Exo projects to a directory on your filesystem. Most projects have one workspace rooted at the same directory as their checked out code. This is how exo knows what project you're working on based on your current working directory.

If run in an unmapped directory, exo gui will offer to create a workspace for you. You can determine the current workspace with exo workspace, initialize a new one with exo init or delete the current workspace with exo workspace destroy.

Manifests

A file describing all of the components in a project. In addition to Exo's prefered format, Exo also supports and . Use exo apply ./path/to/manifest whenever your manifest changes to make your workspace match. Components will be added or removed accordingly.

Components

An abstract definition of resources managed by exo. Presently, the only supported type of components are processes. Each component has a unique name within a workspace. Components are manipulated by applying manifests (see below), or with CRUD operations such as exo ls, exo new, and exo rm.

Resources

Resources are the underlying stateful entities managed by components. Usually, there is a one-to-one relationship a component and its managed resource. The distinction matters for some future scenerios, such as zero-downtime deployments.

Daemon

A background service that manages components and supervises processes. Most commands start this service automatically. You can start it explicitly with exo daemon and terminate it with exo exit.

exo.hcl
procfiles
compose files