mirror of
https://github.com/cf-sonr/hway.git
synced 2026-01-12 11:19:13 +00:00
24 lines
424 B
YAML
24 lines
424 B
YAML
version: "0.5"
|
|
|
|
processes:
|
|
IPFS:
|
|
namespace: testnet
|
|
command: "ipfs daemon --mount"
|
|
ready_log_line: "Daemon is ready"
|
|
|
|
Sonr:
|
|
namespace: testnet
|
|
command: "task sonrd:start"
|
|
depends_on:
|
|
IPFS:
|
|
condition: process_log_ready
|
|
|
|
Hway:
|
|
namespace: testnet
|
|
command: "hway"
|
|
depends_on:
|
|
IPFS:
|
|
condition: process_log_ready
|
|
Sonr:
|
|
condition: process_started
|