taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 47b604a9e642712d2bf2df987b97de13d4cc981c
parent 5ee703cb9c51378ae86cd4a54305486fe1099c3a
Author: ms <ms@taler.net>
Date:   Tue, 23 Nov 2021 17:28:43 +0100

taler-local: launch blog

Diffstat:
Mbin/WIP/taler-local | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/bin/WIP/taler-local b/bin/WIP/taler-local @@ -783,7 +783,9 @@ def prepare(): # Instances INSTANCES = { - "GNUnet": IBAN_MERCHANT_DEMOSHOP + "GNUnet": IBAN_MERCHANT_DEMOSHOP, + "FSF": IBAN_MERCHANT_DEMOSHOP, + "blog": IBAN_MERCHANT_DEMOSHOP } # Credentials / API keys @@ -1762,6 +1764,7 @@ def launch(): subprocess.run(["systemctl", "--user", "start", "libeufin-nexus-local.service"], check=True) subprocess.run(["systemctl", "--user", "start", "libeufin-sandbox-local.service"], check=True) subprocess.run(["systemctl", "--user", "start", "taler-donations-local.service"], check=True) + subprocess.run(["systemctl", "--user", "start", "taler-blog-local.service"], check=True) rev_proxy = TalerReverseProxy( LOG_DIR, @@ -1777,6 +1780,7 @@ def launch(): ) # Stop with CTRL+C print_nn("Stopping the services...") + subprocess.run(["systemctl", "--user", "stop", "taler-blog-local.service"], check=True) subprocess.run(["systemctl", "--user", "stop", "taler-donations-local.service"], check=True) subprocess.run(["systemctl", "--user", "stop", "libeufin-sandbox-local.service"], check=True) subprocess.run(["systemctl", "--user", "stop", "libeufin-nexus-local.service"], check=True)