7 lines
298 B
TOML
7 lines
298 B
TOML
# Run all processes here at boot
|
|
# This is a sample process
|
|
[helloworld] # This is the name of the process
|
|
binary = "bin://hello" # This is the binary to run
|
|
spawn_order = "1" # Spawn order of the processes (lower is earlier)
|
|
arguments = ["--name", "Hello World"] # Arguments to pass to the binary
|