taler-merchant-demos

Python-based Frontends for the Demonstration Web site
Log | Files | Refs | Submodules | README | LICENSE

commit a07e4cde47fcd1040cf62dc30ce7479b6563bab0
parent 4b01264b52f6037e6553bf08b07f9f90f33af4f0
Author: Iván Ávalos <avalos@disroot.org>
Date:   Wed, 30 Jul 2025 13:12:00 +0200

update README.md

Diffstat:
MREADME.md | 34++++++++++++++--------------------
1 file changed, 14 insertions(+), 20 deletions(-)

diff --git a/README.md b/README.md @@ -72,16 +72,14 @@ Step 1: Open the config: Step 2: Adding the required configuration values: > ``` -> [frontends] +> [frontend-demo-shop] > backend_apikey = "secret-token:secret" -> backend = https://backend.demo.taler.net/ +> backend_url = https://backend.demo.taler.net/ +> http_port = 8080 +> serve = http > > [taler] > currency = KUDOS -> -> [blog] -> http_port = 8080 -> serve = http > ``` <br> @@ -114,17 +112,15 @@ _Note: If zsh asks you if you want to correct it to talermerchantdemos, select * This makes the blog speak UWSGI over TCP: > ``` -> [frontends] +> [frontend-demo-shop] > backend_apikey = "secret-token:secret" -> backend = https://backend.demo.taler.net/ +> backend_url = https://backend.demo.taler.net/ +> serve = uwsgi +> uwsgi_serve = tcp +> uwsgi_port = XYZ > > [taler] > currency = KUDOS -> -> [blog] -> serve = uwsgi -> uwsgi_serve = tcp -> uwsgi_port = XZY > ``` <br> @@ -132,16 +128,14 @@ This makes the blog speak UWSGI over TCP: This makes the blog speak UWSGI over unix domain socket: > ``` -> [frontends] +> [frontend-demo-blog] > backend_apikey = "secret-token:secret" -> backend = https://backend.demo.taler.net/ -> -> [taler] -> currency = KUDOS -> -> [blog] +> backend_url = https://backend.demo.taler.net/ > serve = uwsgi > uwsgi_serve = unix > uwsgi_unixpath = "/tmp/blog.uwsgi" > uwsgi_unixpath_mode = XZY +> +> [taler] +> currency = KUDOS > ```