Command Line Interface
Workflow
# Initialize a new workspace in the current directory.
exo init
# Apply a manifest to start it's processes.
exo apply ./Procfile.dev
# Tail logs in your terminal.
exo logs
# Or only specific processes.
exo logs api worker
# Manipulate individual processes.
exo stop worker
exo restart api
# Switch to a different configuration by applying a different manifest.
exo apply ./compose.test.yaml
# Shutdown everything and cleanup state when you're done.
exo workspace destroy
# If you're very, very done and don't want exo running anymore.
exo exitMore Resources
Last updated
Was this helpful?