commit 06946b659d1392721e663274f8f733c132c29514
parent 9e85b47448281c362e595955743144b2136d7b1b
Author: Nick <nicholas.w.farrow@gmail.com>
Date: Sat, 22 May 2021 18:29:43 +1000
Update images
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
@@ -5,7 +5,7 @@ SatSale is a simple, easily deployable, lightweight Bitcoin payment processor th
Donation Button -----> | Bitcoin Payment Gateway
:-------------------------:|:-------------------------:
-[](https://try.btcpyment.com/) <br />(Click for embed demo)<br /> Initiates payment -----> | [](https://store.btcpyment.com/) <br />(Click for WordPress payments demo)
+[](https://try.satsale.com/) <br />(Click for embed demo)<br /> Initiates payment -----> | [ <br />(Click for WordPress payments demo)
SatSale currently serves as
1. Donation button for your website that you can easily embed/link to anywhere.
@@ -43,7 +43,7 @@ password = "RPCPASSWORD"
### Run SatSale
Run SatSale with
```
-gunicorn --worker-class eventlet -w 1 -b 0.0.0.0:8000 satsale:app
+gunicorn --worker-class eventlet -w 1 -b 0.0.0.0:8000 server:app
```
Gunicorn is a lightweight python HTTP server, alternatively you can run with just `python satsale.py` though this is not recommended for production.
@@ -53,7 +53,7 @@ If running on a Raspberry Pi, you will want to [forward port 8000 in your router
You will want to run gunicorn with nohup so it continues serving in the background:
```
-nohup gunicorn --worker-class eventlet -w 1 -b 0.0.0.0:8000 satsale:app > log.txt 2>&1 &
+nohup gunicorn --worker-class eventlet -w 1 -b 0.0.0.0:8000 server:app > log.txt 2>&1 &
tail -f log.txt
```