16 lines
345 B
Makefile
16 lines
345 B
Makefile
SHELL=/bin/bash
|
|
.SHELLFLAGS=-euo pipefail -c
|
|
|
|
include ../Makefile
|
|
|
|
.PHONY: up
|
|
up: wallet/az.json | $(IR) $(LOCODE)
|
|
$(IR) --config innerring.yml
|
|
|
|
wallet/az.json:
|
|
mkdir -p $(dir $@)
|
|
ln -sf $(abspath ../morph/$@) $@
|
|
|
|
.PHONY: healthcheck
|
|
healthcheck: | $(CLI)
|
|
$(CLI) control ir healthcheck -q --wallet wallet/az.json --endpoint 127.0.0.201:8099
|