Available commands:
# Create default config in ./.tuor/, which is also where VM state (overlays, volumes) will be stored
tuor init
# Spawn VM with interactive shell, based on config in nearest .tuor directory
tuor run
# Spawn VM and run custom command
tuor run -- echo "hi"
# Print the effective config (after inheritance & defaults, in config.json shape)
# that `run` sees before it's turned into a session spec, as JSON. Secret values
# are redacted unless --show-secrets is given.
tuor show-config
tuor show-config --show-secrets # Include real secret values
tuor show-config | jq . # Diagnostics go to stderr, so stdout is cleanSee Configuration for how to configure Tuor.