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
  • Process Component
  • Example

Was this helpful?

  1. Components
  2. Unix

Process

Process Component

A typical process running directly on your host operating system.

Attribute
Description

program

Path to program to be excuted.

Required

arguments

Array of strings to be passed to program as command line arguments.

directory

Path to use for working directory. Defaults to workspace root.

Example

process "example-process" {
  program = "./path/to/server"
  arguments = ["--port", "4000"]
}
PreviousUnixNextDocker

Last updated 3 years ago

Was this helpful?