mirror of
https://github.com/onsonr/hway.git
synced 2025-03-10 21:09:11 +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
|